| java.lang.Object example.Magic8BallRequest
Magic8BallRequest | public class Magic8BallRequest implements ServerRequest(Code) | | Protocol specific information for each request. An instance of this
object may be reused to reduce memory allocations.
|
Method Summary | |
public boolean | handleRequest() Handle a new connection. | public void | init() Initialize the connection. |
handleRequest | public boolean handleRequest() throws IOException(Code) | | Handle a new connection. The controlling Server may call
handleRequest again after the connection completes, so the
implementation must initialize any variables for each connection.
|
init | public void init()(Code) | | Initialize the connection. At this point, the current thread is the
connection thread.
|
|
|