2008-03-19 18:14:38 -04:00
|
|
|
|
|
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
|
|
|
2008-03-19 20:51:49 -04:00
|
|
|
public interface MessageHandler {
|
2008-03-19 18:14:38 -04:00
|
|
|
|
2009-02-15 07:20:43 -05:00
|
|
|
public void handle(String topic, Object... messages) throws Exception;
|
2008-03-19 18:14:38 -04:00
|
|
|
|
|
|
|
}
|