public interface Connection
Jetty will call the handle method of a connection when there is work to be done on the connection. For blocking connections, this is soon as the connection is open and handle will keep being called until the connection is closed. For non-blocking connections, handle will only be called if there are bytes to be read or the connection becomes writable after being write blocked.
SelectorManager
Modifier and Type | Method and Description |
---|---|
long |
getTimeStamp() |
Connection |
handle()
Handle the connection.
|
boolean |
isIdle() |
boolean |
isSuspended() |
void |
onClose()
Called when the connection is closed
|
void |
onIdleExpired(long idleForMs)
Called when the connection idle timeout expires
|
Connection handle() throws IOException
IOException
long getTimeStamp()
boolean isIdle()
boolean isSuspended()
void onClose()
void onIdleExpired(long idleForMs)
idleForMs
- TODOCopyright © 1995-2012 Mort Bay Consulting. All Rights Reserved.