Re: IgniteMessaging, What am I doing wrong?

2018-07-27 Thread Dmitriy Govorukhin
No, a new client will not receive these messages because they were sent on previous topology version. (topology version changing after join/left any node) The messages will be sent only to current client nodes. On Fri, Jul 27, 2018 at 2:07 PM monstereo wrote: > thanks, > When I want to send mess

Re: IgniteMessaging, What am I doing wrong?

2018-07-27 Thread monstereo
thanks, When I want to send messages from server to client, it works probably, there were a problem as you stated. May I ask : Let's say server send a messages to client ("hello") When I create another client after seconds, minutes vs.. , this new client will see this messages? Same question for

Re: IgniteMessaging, What am I doing wrong?

2018-07-27 Thread Dmitriy Govorukhin
Hi, Are you sure that server sends a message only after a client is joined to topology? Please, check that ClusterGroup clientNodes is not empty before sending a message to the topic. On Fri, Jul 27, 2018 at 8:27 AM monstereo wrote: > I want to send message to client nodes from server nodes, an

IgniteMessaging, What am I doing wrong?

2018-07-26 Thread monstereo
I want to send message to client nodes from server nodes, and client nodes will take this message and print it. Here is the server nodes public static void main { Ignite server = //start ignite with default config path ClusterGroup clientNodes = server.cluster().forClients();