質問

if i have one messagequeue and multiple standalone programs which try to receive messages from this queue via

sess.receive();

which clientprogram will actually receive the message? how is this decided? thank you

役に立ちましたか?

解決

All things being equal, any of the receivers could receive the message (but only one of them). Architecturaly speaking, you should not care which receiver gets the message. If you have different message handling in the receivers, you should consider using selectors or different queues.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top