2008-03-19 22:14:38 +00:00
|
|
|
|
|
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
|
|
|
2008-03-20 00:51:49 +00:00
|
|
|
public interface MessageHandler {
|
2008-03-19 22:14:38 +00:00
|
|
|
|
2008-07-30 22:37:01 +00:00
|
|
|
public void handle(String topic, Object... messages);
|
2008-03-19 22:14:38 +00:00
|
|
|
|
|
|
|
}
|