| 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.service | |
| org.apache.mina.core.session | |
| org.apache.mina.proxy | |
| org.apache.mina.transport.socket | |
| org.apache.mina.transport.vmpipe |
In-VM pipe support which removes the overhead of local loopback communication.
|
| Modifier and Type | Field and Description |
|---|---|
protected IoSessionConfig |
AbstractIoService.sessionConfig
The default
IoSessionConfig which will be used to configure new sessions. |
| Modifier and Type | Method and Description |
|---|---|
IoSessionConfig |
IoService.getSessionConfig()
Returns the default configuration of the new
IoSessions
created by this service. |
| Modifier and Type | Method and Description |
|---|---|
Class<? extends IoSessionConfig> |
TransportMetadata.getSessionConfigType()
Returns the type of the
IoSessionConfig of the service |
Class<? extends IoSessionConfig> |
DefaultTransportMetadata.getSessionConfigType() |
| Constructor and Description |
|---|
AbstractIoAcceptor(IoSessionConfig sessionConfig,
Executor executor)
Constructor for
AbstractIoAcceptor. |
AbstractIoConnector(IoSessionConfig sessionConfig,
Executor executor)
Constructor for
AbstractIoConnector. |
AbstractIoService(IoSessionConfig sessionConfig,
Executor executor)
Constructor for
AbstractIoService. |
| Constructor and Description |
|---|
DefaultTransportMetadata(String providerName,
String name,
boolean connectionless,
boolean fragmentation,
Class<? extends SocketAddress> addressType,
Class<? extends IoSessionConfig> sessionConfigType,
Class<?>... envelopeTypes) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIoSessionConfig
A base implementation of
IoSessionConfig. |
| Modifier and Type | Field and Description |
|---|---|
protected IoSessionConfig |
AbstractIoSession.config
The session config
|
| Modifier and Type | Method and Description |
|---|---|
IoSessionConfig |
DummySession.getConfig() |
IoSessionConfig |
IoSession.getConfig() |
IoSessionConfig |
AbstractIoSession.getConfig() |
| Modifier and Type | Method and Description |
|---|---|
protected abstract void |
AbstractIoSessionConfig.doSetAll(IoSessionConfig config)
Implement this method to set all transport-specific configuration
properties retrieved from the specified config.
|
void |
AbstractIoSessionConfig.setAll(IoSessionConfig config)
Sets all configuration properties retrieved from the specified
config.
|
void |
IoSessionConfig.setAll(IoSessionConfig config)
Sets all configuration properties retrieved from the specified
config.
|
void |
DummySession.setConfig(IoSessionConfig config)
Sets the configuration of this session.
|
| Modifier and Type | Method and Description |
|---|---|
IoSessionConfig |
ProxyConnector.getSessionConfig()
Returns the default configuration of the new
IoSessions
created by this service. |
| Constructor and Description |
|---|
ProxyConnector(SocketConnector connector,
IoSessionConfig config,
Executor executor)
Creates a new proxy connector.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DatagramSessionConfig
An
IoSessionConfig for datagram transport type. |
interface |
SocketSessionConfig
An
IoSessionConfig for socket transport type. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDatagramSessionConfig
TODO Add documentation
|
class |
AbstractSocketSessionConfig
TODO Add documentation
|
class |
DefaultDatagramSessionConfig
A default implementation of
DatagramSessionConfig. |
class |
DefaultSocketSessionConfig
A default implementation of
SocketSessionConfig. |
| Modifier and Type | Method and Description |
|---|---|
protected void |
AbstractDatagramSessionConfig.doSetAll(IoSessionConfig config) |
protected void |
AbstractSocketSessionConfig.doSetAll(IoSessionConfig config) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
VmPipeSessionConfig
An
IoSessionConfig for vmpipe transport type. |
Copyright © 2004–2017 Apache MINA Project. All rights reserved.