1 14 15 package org.quickserver.net.server; 16 17 import java.io.*; 18 import java.net.SocketTimeoutException ; 19 74 public interface ClientEventHandler { 75 76 83 public void gotConnected(ClientHandler handler) 84 throws SocketTimeoutException , IOException; 85 86 93 public void lostConnection(ClientHandler handler) 94 throws IOException; 95 96 102 public void closingConnection(ClientHandler handler) 103 throws IOException; 104 105 } 106 | Popular Tags |