Uses of Class
org.apache.mina.common.IoFilterAdapter

Packages that use IoFilterAdapter
org.apache.mina.filter.codec Filter implementations that helps you to implement complex protocols via 'codec' concept. 
org.apache.mina.filter.compression   
org.apache.mina.filter.errorgenerating An IoFilter that provides flexible error generation facilities. 
org.apache.mina.filter.executor An IoFilter that provides flexible thread models 
org.apache.mina.filter.firewall Classes that implement IoFilter and provide host blocking and throttling. 
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.reqres   
org.apache.mina.filter.ssl Classes that implement IoFilter and provide Secure Sockets Layer functionality. 
org.apache.mina.filter.statistic Classes that implement IoFilter and provide the ability for filters to be timed on their performance. 
org.apache.mina.filter.stream Stream based IoFilter implementation. 
org.apache.mina.filter.traffic IoFilter's which will provide functionality for shaping the traffic and preventing data flooding. 
org.apache.mina.filter.util Utility classes for the MINA filtering portion of the library. 
 

Uses of IoFilterAdapter in org.apache.mina.filter.codec
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.codec
 class ProtocolCodecFilter
          An IoFilter which translates binary or protocol specific data into message object and vice versa using ProtocolCodecFactory, ProtocolEncoder, or ProtocolDecoder.
 

Uses of IoFilterAdapter in org.apache.mina.filter.compression
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.compression
 class CompressionFilter
          An IoFilter which compresses all data using JZlib.
 

Uses of IoFilterAdapter in org.apache.mina.filter.errorgenerating
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.errorgenerating
 class ErrorGeneratingFilter
          An IoFilter implementation generating random bytes and PDU modification in your communication streams.
 

Uses of IoFilterAdapter in org.apache.mina.filter.executor
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.executor
 class ExecutorFilter
          A filter that forwards I/O events to Executor to enforce a certain thread model while allowing the events per session to be processed simultaneously.
 

Uses of IoFilterAdapter in org.apache.mina.filter.firewall
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.firewall
 class BlacklistFilter
          A IoFilter which blocks connections from blacklisted remote address.
 class ConnectionThrottleFilter
          A IoFilter which blocks connections from connecting at a rate faster than the specified interval.
 

Uses of IoFilterAdapter in org.apache.mina.filter.keepalive
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.keepalive
 class KeepAliveFilter
          An IoFilter that sends a keep-alive request on sessionIdle event with IdleStatus.READER_IDLE and sends back the response for the keep-alive request.
 

Uses of IoFilterAdapter in org.apache.mina.filter.logging
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.logging
 class LoggingFilter
          Logs all MINA protocol events.
 class MdcInjectionFilter
          This filter will inject some key IoSession properties into the Mapped Diagnostic Context (MDC)

These properties will be set in the MDC for all logging events that are generated down the call stack, even in code that is not aware of MINA.

 

Uses of IoFilterAdapter in org.apache.mina.filter.reqres
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.reqres
 class RequestResponseFilter
           
 

Uses of IoFilterAdapter in org.apache.mina.filter.ssl
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.ssl
 class SslFilter
          An SSL filter that encrypts and decrypts the data exchanged in the session.
 

Uses of IoFilterAdapter in org.apache.mina.filter.statistic
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.statistic
 class ProfilerTimerFilter
          This class will measure, the time it takes for a method in the IoFilterAdapter class to execute.
 

Uses of IoFilterAdapter in org.apache.mina.filter.stream
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.stream
 class StreamWriteFilter
          Filter implementation which makes it possible to write InputStream objects directly using IoSession.write(Object).
 

Uses of IoFilterAdapter in org.apache.mina.filter.traffic
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.traffic
 class ReadThrottleFilter
          An IoFilter that throttles incoming traffic to prevent a unwanted OutOfMemoryError under heavy load.
 class TrafficShapingFilter
          An IoFilter that limits bandwidth (bytes per second) related with read and write operations on a per-session basis.
 class WriteThrottleFilter
          An IoFilter that throttles outgoing traffic to prevent a unwanted OutOfMemoryError under heavy load.
 

Uses of IoFilterAdapter in org.apache.mina.filter.util
 

Subclasses of IoFilterAdapter in org.apache.mina.filter.util
 class CommonEventFilter
          Extend this class when you want to create a filter that wraps the same logic around all 9 IoEvents
 class SessionAttributeInitializingFilter
          An IoFilter that sets initial attributes when a new IoSession is created.
 class WriteRequestFilter
          An abstract IoFilter that simplifies the implementation of an IoFilter that filters an IoEventType.WRITE event.
 



Copyright © 2004-2009 Apache MINA Project. All Rights Reserved.