Add missing handler interface.
[xudocci.git] / src / main / java / net / pterodactylus / irc / connection / Handler.java
1 package net.pterodactylus.irc.connection;
2
3 import net.pterodactylus.irc.Reply;
4
5 /**
6  * Handler for an IRC server reply.
7  *
8  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
9  */
10 public interface Handler {
11
12         boolean willHandle(Reply reply);
13         void handleReply(Reply reply);
14
15 }