| Package | Description |
|---|---|
| org.apache.mina.core.filterchain | |
| org.apache.mina.core.service | |
| org.apache.mina.core.session | |
| org.apache.mina.filter.codec |
Filter implementations that helps you to implement complex protocols
via 'codec' concept.
|
| org.apache.mina.filter.codec.demux |
Protocol codecs that helps you to implement even more complex protocols by
splitting a codec into multiple sub-codecs.
|
| org.apache.mina.filter.codec.textline |
A protocol codec for text-based protocols.
|
| org.apache.mina.filter.compression | |
| org.apache.mina.filter.executor |
IoFilters that provide flexible thread model and event queue
monitoring interface.
|
| org.apache.mina.filter.keepalive |
IoFilter that provides the ability for connections to remain open when data is not being transferred.
|
| org.apache.mina.filter.logging |
Classes that implement IoFilter and provide logging of the events and data that flows through a MINA-based system.
|
| org.apache.mina.filter.ssl |
Classes that implement IoFilter and provide Secure Sockets Layer functionality.
|
| org.apache.mina.filter.stream |
Stream based IoFilter implementation.
|
| org.apache.mina.handler.multiton |
Enables creating a handler per session instead of having one handler for many
sessions, using
Multiton pattern.
|
| org.apache.mina.handler.stream |
| Modifier and Type | Field and Description |
|---|---|
static AttributeKey |
DefaultIoFilterChain.SESSION_CREATED_FUTURE
|
| Modifier and Type | Field and Description |
|---|---|
private static AttributeKey |
SimpleIoProcessorPool.PROCESSOR
A key used to store the processor pool in the session's Attributes
|
| Modifier and Type | Field and Description |
|---|---|
private static AttributeKey |
AbstractIoSession.READY_READ_FUTURES_KEY |
private static AttributeKey |
AbstractIoSession.WAITING_READ_FUTURES_KEY |
| Modifier and Type | Field and Description |
|---|---|
private AttributeKey |
CumulativeProtocolDecoder.BUFFER |
private static AttributeKey |
ProtocolCodecFilter.DECODER |
private static AttributeKey |
ProtocolCodecFilter.DECODER_OUT |
private static AttributeKey |
ProtocolCodecFilter.ENCODER |
private static AttributeKey |
ProtocolCodecFilter.ENCODER_OUT |
| Modifier and Type | Field and Description |
|---|---|
private AttributeKey |
DemuxingProtocolDecoder.STATE |
private AttributeKey |
DemuxingProtocolEncoder.STATE |
| Modifier and Type | Field and Description |
|---|---|
private AttributeKey |
TextLineDecoder.CONTEXT |
private static AttributeKey |
TextLineEncoder.ENCODER |
| Modifier and Type | Field and Description |
|---|---|
private AttributeKey |
CompressionFilter.DEFLATER
A session attribute that stores the
Zlib object used for compression. |
static AttributeKey |
CompressionFilter.DISABLE_COMPRESSION_ONCE
A flag that allows you to disable compression once.
|
private AttributeKey |
CompressionFilter.INFLATER
A session attribute that stores the
Zlib object used for decompression. |
| Modifier and Type | Field and Description |
|---|---|
private AttributeKey |
OrderedThreadPoolExecutor.TASKS_QUEUE
A key stored into the session's attribute for the event tasks being queued
|
| Modifier and Type | Field and Description |
|---|---|
private AttributeKey |
KeepAliveFilter.IGNORE_READER_IDLE_ONCE |
private AttributeKey |
KeepAliveFilter.WAITING_FOR_RESPONSE |
| Modifier and Type | Field and Description |
|---|---|
private static AttributeKey |
MdcInjectionFilter.CONTEXT_KEY
key used for storing the context map in the IoSession
|
| Modifier and Type | Field and Description |
|---|---|
static AttributeKey |
SslFilter.DISABLE_ENCRYPTION_ONCE
A session attribute key that makes next one write request bypass
this filter (not encrypting the data).
|
private static AttributeKey |
SslFilter.NEXT_FILTER |
static AttributeKey |
SslFilter.PEER_ADDRESS
A session attribute key that should be set to an
InetSocketAddress. |
private static AttributeKey |
SslFilter.SSL_HANDLER |
static AttributeKey |
SslFilter.SSL_SESSION
A session attribute key that stores underlying
SSLSession
for each session. |
static AttributeKey |
SslFilter.USE_NOTIFICATION
A session attribute key that makes this filter to emit a
IoHandler.messageReceived(IoSession, Object) event with a
special message (SslFilter.SESSION_SECURED or SslFilter.SESSION_UNSECURED). |
| Modifier and Type | Field and Description |
|---|---|
protected AttributeKey |
AbstractStreamWriteFilter.CURRENT_STREAM
The attribute name used when binding the streaming object to the session.
|
protected AttributeKey |
AbstractStreamWriteFilter.CURRENT_WRITE_REQUEST |
protected AttributeKey |
AbstractStreamWriteFilter.WRITE_REQUEST_QUEUE |
| Modifier and Type | Field and Description |
|---|---|
static AttributeKey |
SingleSessionIoHandlerDelegate.HANDLER
Deprecated.
The key used to store the
SingleSessionIoHandler as a session
attribute. |
| Modifier and Type | Field and Description |
|---|---|
private static AttributeKey |
StreamIoHandler.KEY_IN |
private static AttributeKey |
StreamIoHandler.KEY_OUT |