Package | Description |
---|---|
org.apache.mina.core.polling |
Base class for implementing transport based on active polling strategies like NIO select call,
or any API based on I/O polling system calls (epoll, poll, select, kqueue, etc).
|
org.apache.mina.core.session | |
org.apache.mina.transport.socket.apr | |
org.apache.mina.transport.socket.nio |
Socket (TCP/IP) and Datagram (UDP/IP) support based on Java NIO (New I/O) API.
|
Modifier and Type | Method and Description |
---|---|
protected abstract SessionState |
AbstractPollingIoProcessor.getState(S session)
Get the state of a session (One of OPENING, OPEN, CLOSING)
|
Modifier and Type | Method and Description |
---|---|
static SessionState |
SessionState.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SessionState[] |
SessionState.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
protected SessionState |
AprIoProcessor.getState(AprSession session)
Get the state of a session (One of OPENING, OPEN, CLOSING)
|
Modifier and Type | Method and Description |
---|---|
protected SessionState |
NioProcessor.getState(NioSession session)
Get the state of a session (One of OPENING, OPEN, CLOSING)
|
Copyright © 2004–2016 Apache MINA Project. All rights reserved.