Uses of Class
org.apache.mina.core.session.AttributeKey
-
Packages that use AttributeKey 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 -
-
Uses of AttributeKey in org.apache.mina.core.filterchain
Fields in org.apache.mina.core.filterchain declared as AttributeKey Modifier and Type Field Description static AttributeKeyDefaultIoFilterChain. SESSION_CREATED_FUTURE -
Uses of AttributeKey in org.apache.mina.core.service
Fields in org.apache.mina.core.service declared as AttributeKey Modifier and Type Field Description private static AttributeKeySimpleIoProcessorPool. PROCESSORA key used to store the processor pool in the session's Attributes -
Uses of AttributeKey in org.apache.mina.core.session
Fields in org.apache.mina.core.session declared as AttributeKey Modifier and Type Field Description private static AttributeKeyAbstractIoSession. READY_READ_FUTURES_KEYprivate static AttributeKeyAbstractIoSession. WAITING_READ_FUTURES_KEY -
Uses of AttributeKey in org.apache.mina.filter.codec
Fields in org.apache.mina.filter.codec declared as AttributeKey Modifier and Type Field Description private static AttributeKeyCumulativeProtocolDecoder. BUFFERThe buffer used to store the data in the sessionprivate static AttributeKeyProtocolCodecFilter. DECODERprivate static AttributeKeyProtocolCodecFilter. DECODER_OUTprivate static AttributeKeyProtocolCodecFilter. ENCODERprivate static AttributeKeyProtocolCodecFilter. ENCODER_OUT -
Uses of AttributeKey in org.apache.mina.filter.codec.demux
Fields in org.apache.mina.filter.codec.demux declared as AttributeKey Modifier and Type Field Description private static AttributeKeyDemuxingProtocolDecoder. STATEprivate static AttributeKeyDemuxingProtocolEncoder. STATE -
Uses of AttributeKey in org.apache.mina.filter.codec.textline
Fields in org.apache.mina.filter.codec.textline declared as AttributeKey Modifier and Type Field Description private static AttributeKeyTextLineDecoder. CONTEXTprivate static AttributeKeyTextLineEncoder. ENCODER -
Uses of AttributeKey in org.apache.mina.filter.compression
Fields in org.apache.mina.filter.compression declared as AttributeKey Modifier and Type Field Description private AttributeKeyCompressionFilter. DEFLATERA session attribute that stores theZlibobject used for compression.static AttributeKeyCompressionFilter. DISABLE_COMPRESSION_ONCEA flag that allows you to disable compression once.private AttributeKeyCompressionFilter. INFLATERA session attribute that stores theZlibobject used for decompression. -
Uses of AttributeKey in org.apache.mina.filter.executor
Fields in org.apache.mina.filter.executor declared as AttributeKey Modifier and Type Field Description private static AttributeKeyOrderedThreadPoolExecutor. TASKS_QUEUEA key stored into the session's attribute for the event tasks being queuedprivate static AttributeKeyPriorityThreadPoolExecutor. TASKS_QUEUEA key stored into the session's attribute for the event tasks being queued -
Uses of AttributeKey in org.apache.mina.filter.keepalive
Fields in org.apache.mina.filter.keepalive declared as AttributeKey Modifier and Type Field Description private AttributeKeyKeepAliveFilter. IGNORE_READER_IDLE_ONCEprivate AttributeKeyKeepAliveFilter. WAITING_FOR_RESPONSE -
Uses of AttributeKey in org.apache.mina.filter.logging
Fields in org.apache.mina.filter.logging declared as AttributeKey Modifier and Type Field Description private static AttributeKeyMdcInjectionFilter. CONTEXT_KEYkey used for storing the context map in the IoSession -
Uses of AttributeKey in org.apache.mina.filter.ssl
Fields in org.apache.mina.filter.ssl declared as AttributeKey Modifier and Type Field Description static AttributeKeySslFilter. DISABLE_ENCRYPTION_ONCEA session attribute key that makes next one write request bypass this filter (not encrypting the data).private static AttributeKeySslFilter. NEXT_FILTERAn attribute containing the next filterstatic AttributeKeySslFilter. PEER_ADDRESSA session attribute key that should be set to anInetSocketAddress.private static AttributeKeySslFilter. SSL_HANDLERstatic AttributeKeySslFilter. SSL_SESSIONA session attribute key that stores underlyingSSLSessionfor each session.static AttributeKeySslFilter. USE_NOTIFICATIONA session attribute key that makes this filter to emit aIoHandler.messageReceived(IoSession, Object)event with a special message (SslEvent.SECUREDorSslEvent.UNSECURED). -
Uses of AttributeKey in org.apache.mina.filter.stream
Fields in org.apache.mina.filter.stream declared as AttributeKey Modifier and Type Field Description protected static AttributeKeyAbstractStreamWriteFilter. CURRENT_STREAMThe attribute name used when binding the streaming object to the session.protected static AttributeKeyAbstractStreamWriteFilter. CURRENT_WRITE_REQUESTprotected static AttributeKeyAbstractStreamWriteFilter. WRITE_REQUEST_QUEUE -
Uses of AttributeKey in org.apache.mina.handler.multiton
Fields in org.apache.mina.handler.multiton declared as AttributeKey Modifier and Type Field Description static AttributeKeySingleSessionIoHandlerDelegate. HANDLERDeprecated.The key used to store theSingleSessionIoHandleras a session attribute. -
Uses of AttributeKey in org.apache.mina.handler.stream
Fields in org.apache.mina.handler.stream declared as AttributeKey Modifier and Type Field Description private static AttributeKeyStreamIoHandler. KEY_INprivate static AttributeKeyStreamIoHandler. KEY_OUT
-