mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
13 lines
185 B
Java
13 lines
185 B
Java
|
|
||
|
package net.sourceforge.tuned;
|
||
|
|
||
|
|
||
|
import java.util.EventListener;
|
||
|
|
||
|
|
||
|
public interface MessageHandler extends EventListener {
|
||
|
|
||
|
public void handle(String topic, String... messages);
|
||
|
|
||
|
}
|