Hi, I have been looking at Dempsy for a couple of days and was curious whether there is a way for me to send the same message to multiple message processors...
2
Jim
jfcarroll
May 1, 2012 11:59 pm
Hey Justin, Sorry for the late reply, Dempsy will do what you're looking to do automatically as long as the Mp's are in different clusters. If you want I will...
3
Frank
sanmi
Jun 5, 2012 10:56 pm
I'm getting unit test failures when running tests. Environment: * Windows XP * Java 6 * Eclipse Version: 3.7.0, Build id: I20110613-1736 * built-in Maven...
4
Jim
jfcarroll
Jun 7, 2012 6:37 pm
I sent this out yesterday but it bounced. Sorry about that. Thanks Frank. Thanks for the phone call today. Let's get together tomorrow so that we can...
5
Frank
sanmi
Jun 7, 2012 9:52 pm
Sorry - my mistake! I was not building the most recent code. I refreshed my git repo and all tests are passing. Thanks, Frank...
6
Jim
jfcarroll
Jun 8, 2012 12:19 pm
Thanks Frank!...
7
kudos631
Sep 27, 2012 2:06 am
HI, I an new to dempsy. I tried to run the program WordListFileReaderWordfactory.java. And end up with an error message ERROR WordListFileReaderWordFactory -...
8
pdbine
Apr 16, 2013 9:13 am
Hi! I'm looking at Dempsy for my thesis and I am curios to know how a message processor could dispatch new messages as result of the message handler...
9
Jim
jfcarroll
Apr 16, 2013 12:27 pm
Actually, anything returned from a method marked with an @MessageHandler on a MessageProcessor will be routed to the appropriate cluster. With the latest...
10
pdbine
Apr 16, 2013 12:50 pm
Very clear, thank you very much! So, if i understand well, i can also have a @MessageHandler that returns the same message class like: @MessageHandler public...
11
Jim
jfcarroll
Apr 16, 2013 1:00 pm
Yes. However, I have not yet run across a use case where I've needed to route a message to another message processor within the same cluster (cluster = the...
12
pdbine
Apr 17, 2013 10:13 am
Thanks a lot! I have imagined an extension of the WordCount example where the goal is to count also the words that compose another word (for example bathroom =...
13
Jim
jfcarroll
Apr 17, 2013 12:18 pm
Ok, Just keep in mind, the WordCount example is just a simple example to get the idea of how to write an application with Dempsy. Dempsy has some issues with...
15
pdbine
Apr 18, 2013 10:12 am
Ok, the extension was only a try to better understand Dempsy mechanisms. I have another question for you: Dempsy automatically builds more adaptor instances (i...
16
Jim
jfcarroll
Apr 18, 2013 1:00 pm
Dempsy doesn't really manage the lifecycle of Adaptors. Since there's no real way for Dempsy to know how stream data can be retrieved from an external source,...
17
pdbine
Apr 23, 2013 10:01 am
In the "Message Processor LifeCycle" image of the simple example are shown more node in the Adaptor cluster. Each node have a box Word Adaptor, so I have...