In case you can't hold all the data in memory, you can use something like this:
(Uses a classic observer pattern where one thread monitors the source and the others are notified of the new data)
class Broadcaster {
private final ConcurrentSkipListSet<Listener> listeners =
new ConcurrentSkipListSet<Listener>();
private final BufferedReader source = //inject source
// register / de-gegister code
public void register(Listener listener);
public void deRegister(Listener listener);
// usually it's used like broadcaster.register(this);
public void broadcast(){
String read = null;
while((read = source.readLine())!=null){
for(Listener listener : listeners){
listener.send(read);
}
}
}
}
and
class Listener implements Runnable {
private final Queue<String> queue = new LinkedBlockingQueue<String>();
public void send(String read){
queue.add(read);
}
public void run(){
while(!Thread.currentThread().isInterrupted()){
String got = queue.get();
System.out.println(got);
}
}
}
I didn't test this thing or anything, so have mercy if it doesn't work!
EDIT: If you have memory constraint, you might want to do this as well:
Queue<String> queue = new LinkedBlockingQueue<String>(2000);
This will put a upper limit on how many elements can queue up in the queue, and when this limit is reached, threads that want to put elements on it will have to wait (if add is used, that is). This way the Broadcaster will block (wait) when the listeners can't consume the data fast enough (while in this simple scheme other listener could starve).
EDIT2: When you do this, you should preferably put only immutable things on the Queue. If you put for example byte[], a impolite listener may change the data and the other threads may be surprised. If this is somehow impossible, you should put a different copy on each queue, e.g. byteArray.clone(). This may incur some performance hit though.
BufferedReader... – ayush Mar 4 '11 at 8:18