Uses of Interface
org.littleshoot.mina.common.IoFilter

Packages that use IoFilter
org.littleshoot.mina.common Common types required for users to use MINA. 
org.littleshoot.mina.common.support Internal classes used by org.apache.mina.common package. 
org.littleshoot.mina.filter Useful IoFilter implementations. 
org.littleshoot.mina.filter.codec Filter implementations that helps you to implement complex protocols via 'codec' concept. 
org.littleshoot.mina.filter.executor An IoFilter that provides flexible thread models 
 

Uses of IoFilter in org.littleshoot.mina.common
 

Classes in org.littleshoot.mina.common that implement IoFilter
 class IoFilterAdapter
          An abstract adapter class for IoFilter.
 

Methods in org.littleshoot.mina.common that return IoFilter
 IoFilter IoFilterChain.get(String name)
          Returns the IoFilter with the specified name in this chain.
 IoFilter DefaultIoFilterChainBuilder.get(String name)
           
 IoFilter IoFilterChain.Entry.getFilter()
          Returns the filter.
 IoFilter IoFilterChain.remove(String name)
          Removes the filter with the specified name from this chain.
 IoFilter DefaultIoFilterChainBuilder.remove(String name)
           
 

Methods in org.littleshoot.mina.common with parameters of type IoFilter
 void IoFilterChain.addAfter(String baseName, String name, IoFilter filter)
          Adds the specified filter with the specified name just after the filter whose name is baseName in this chain.
 void DefaultIoFilterChainBuilder.addAfter(String baseName, String name, IoFilter filter)
           
 void IoFilterChain.addBefore(String baseName, String name, IoFilter filter)
          Adds the specified filter with the specified name just before the filter whose name is baseName in this chain.
 void DefaultIoFilterChainBuilder.addBefore(String baseName, String name, IoFilter filter)
           
 void IoFilterChain.addFirst(String name, IoFilter filter)
          Adds the specified filter with the specified name at the beginning of this chain.
 void DefaultIoFilterChainBuilder.addFirst(String name, IoFilter filter)
           
 void IoFilterChain.addLast(String name, IoFilter filter)
          Adds the specified filter with the specified name at the end of this chain.
 void DefaultIoFilterChainBuilder.addLast(String name, IoFilter filter)
           
 boolean IoFilterChain.contains(IoFilter filter)
          Returns true if this chain contains the specified filter.
 boolean DefaultIoFilterChainBuilder.contains(IoFilter filter)
           
 

Method parameters in org.littleshoot.mina.common with type arguments of type IoFilter
 boolean IoFilterChain.contains(Class<? extends IoFilter> filterType)
          Returns true if this chain contains an IoFilter of the specified filterType.
 boolean DefaultIoFilterChainBuilder.contains(Class<? extends IoFilter> filterType)
           
 

Uses of IoFilter in org.littleshoot.mina.common.support
 

Methods in org.littleshoot.mina.common.support that return IoFilter
 IoFilter AbstractIoFilterChain.get(String name)
           
 IoFilter AbstractIoFilterChain.remove(String name)
           
 

Methods in org.littleshoot.mina.common.support with parameters of type IoFilter
 void AbstractIoFilterChain.addAfter(String baseName, String name, IoFilter filter)
           
 void AbstractIoFilterChain.addBefore(String baseName, String name, IoFilter filter)
           
 void AbstractIoFilterChain.addFirst(String name, IoFilter filter)
           
 void AbstractIoFilterChain.addLast(String name, IoFilter filter)
           
 boolean AbstractIoFilterChain.contains(IoFilter filter)
           
 

Method parameters in org.littleshoot.mina.common.support with type arguments of type IoFilter
 boolean AbstractIoFilterChain.contains(Class<? extends IoFilter> filterType)
           
 

Uses of IoFilter in org.littleshoot.mina.filter
 

Classes in org.littleshoot.mina.filter that implement IoFilter
 class BlacklistFilter
          A IoFilter which blocks connections from blacklisted remote address.
 class LoggingFilter
          Logs all MINA protocol events to Logger.
 class ReferenceCountingIoFilter
          An IoFilters wrapper that keeps track of the number of usages of this filter and will call init/destroy when the filter is not in use.
 class StreamWriteFilter
          Filter implementation which makes it possible to write InputStream objects directly using IoSession.write(Object).
 

Constructors in org.littleshoot.mina.filter with parameters of type IoFilter
ReferenceCountingIoFilter(IoFilter filter)
           
 

Uses of IoFilter in org.littleshoot.mina.filter.codec
 

Classes in org.littleshoot.mina.filter.codec that implement IoFilter
 class ProtocolCodecFilter
          An IoFilter which translates binary or protocol specific data into message object and vice versa using ProtocolCodecFactory, ProtocolEncoder, or ProtocolDecoder.
 

Uses of IoFilter in org.littleshoot.mina.filter.executor
 

Classes in org.littleshoot.mina.filter.executor that implement IoFilter
 class ExecutorFilter
          A filter that forward events to Executor in backport-util-concurrent.
 



Copyright © 2011 LittleShoot. All Rights Reserved.