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
|
|
|
|
2009-02-15 12:20:43 +00:00
|
|
|
public void handle(String topic, Object... messages) throws Exception;
|
2008-03-19 22:14:38 +00:00
|
|
|
|
|
|
|
}
|