1 14 15 package org.quickserver.net.server; 16 17 import java.io.*; 18 import java.net.SocketException ; 19 68 public interface ClientExtendedEventHandler { 69 70 75 public void handleTimeout(ClientHandler handler) throws SocketException , IOException; 76 77 83 public void handleMaxAuthTry(ClientHandler handler) throws IOException; 84 85 91 public boolean handleMaxConnection(ClientHandler handler) throws IOException; 92 93 } 94 | Popular Tags |