Package | Description |
---|---|
org.shared.net |
A framework for transparent, scalable networking with asynchronous sockets.
|
org.shared.net.handler |
A package of
ConnectionHandler implementations. |
org.shared.net.nio |
A package for managed connections built on top of
java.nio . |
org.shared.test.net |
A suite of tests for asynchronous networking.
|
Modifier and Type | Method and Description |
---|---|
static ConnectionHandler.ClosingType |
ConnectionHandler.ClosingType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionHandler.ClosingType[] |
ConnectionHandler.ClosingType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
ConnectionHandler.onClosing(ConnectionHandler.ClosingType type,
ByteBuffer bb)
On closure.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractFilteredHandler.onClosing(ConnectionHandler.ClosingType type,
ByteBuffer bb) |
void |
SynchronousHandler.onClosing(ConnectionHandler.ClosingType type,
Queue<ByteBuffer> inputs) |
void |
XmlHandler.onClosing(ConnectionHandler.ClosingType type,
Queue<T> inputs) |
void |
FilteredHandler.onClosing(ConnectionHandler.ClosingType type,
Queue<T> inputs)
On closure.
|
Modifier and Type | Method and Description |
---|---|
protected void |
NioConnection.doClosing(ConnectionHandler.ClosingType type)
NioManagerThread call -- Initiates connection closure. |
Modifier and Type | Method and Description |
---|---|
void |
ClientServerTest.Utf8Handler.onClosing(ConnectionHandler.ClosingType type,
Queue<String> inputs) |