tags:

views:

82

answers:

1

How do I broadcast a message from a single source to all nodes, and from multiple sources to all nodes?

Are there any libraries in java that may help?

+3  A: 

You could look into a distributed messaging framework such as JMS. One Open Source implementation of the protocol is Active MQ: http://activemq.apache.org/

Oleg Barshay
Sounds like a Topic Messaging model to me.
Spencer K