Uses of Interface
org.apache.mina.common.IoHandler

Packages that use IoHandler
org.apache.mina.common Common types required for users to use MINA. 
org.apache.mina.handler.chain A handler implementation that helps you implement sequentially layered protocols using Chains of Responsibility pattern. 
org.apache.mina.handler.demux A handler implementation that helps you implement complex protocols by splitting messageReceived handlers into multiple sub-handlers. 
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 IoHandler in org.apache.mina.common
 

Classes in org.apache.mina.common that implement IoHandler
 class IoHandlerAdapter
          An abstract adapter class for IoHandler.
 

Methods in org.apache.mina.common that return IoHandler
 IoHandler IoSession.getHandler()
          Returns the IoHandler which handles this session.
 IoHandler IoService.getHandler()
          Returns the handler which will handle all connections managed by this service.
 IoHandler AbstractIoService.getHandler()
           
 IoHandler DummySession.getHandler()
           
 

Methods in org.apache.mina.common with parameters of type IoHandler
 void IoService.setHandler(IoHandler handler)
          Sets the handler which will handle all connections managed by this service.
 void AbstractIoService.setHandler(IoHandler handler)
           
 void DummySession.setHandler(IoHandler handler)
          Sets the IoHandler which handles this session.
 

Uses of IoHandler in org.apache.mina.handler.chain
 

Classes in org.apache.mina.handler.chain that implement IoHandler
 class ChainedIoHandler
          An IoHandler which executes an IoHandlerChain on a messageReceived event.
 

Uses of IoHandler in org.apache.mina.handler.demux
 

Classes in org.apache.mina.handler.demux that implement IoHandler
 class DemuxingIoHandler
          A IoHandler that demuxes messageReceived events to the appropriate MessageHandler.
 

Uses of IoHandler in org.apache.mina.handler.multiton
 

Classes in org.apache.mina.handler.multiton that implement IoHandler
 class SingleSessionIoHandlerDelegate
          An IoHandler implementation which delegates all requests to SingleSessionIoHandlers.
 

Uses of IoHandler in org.apache.mina.handler.stream
 

Classes in org.apache.mina.handler.stream that implement IoHandler
 class StreamIoHandler
          A IoHandler that adapts asynchronous MINA events to stream I/O.
 



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