Uses of Interface
org.apache.mina.core.service.IoHandler

Packages that use IoHandler
org.apache.mina.core.service   
org.apache.mina.core.session   
org.apache.mina.example.chat Chat server which demonstates using the text line codec and Spring integration. 
org.apache.mina.example.chat.client Swing based chat client. 
org.apache.mina.example.echoserver Echo server which demonstates low-level I/O layer and SSL support. 
org.apache.mina.example.gettingstarted.timeserver   
org.apache.mina.example.haiku   
org.apache.mina.example.imagine.step1.client   
org.apache.mina.example.imagine.step1.server   
org.apache.mina.example.netcat NetCat client (Network + Unix cat command) which demonstates low-level I/O layer. 
org.apache.mina.example.proxy A TCP/IP tunneling proxy example. 
org.apache.mina.example.reverser Reverser server which reverses all text lines demonstating high-level protocol layer. 
org.apache.mina.example.sumup SumUp Server and Client which sums up all ADD requests. 
org.apache.mina.example.tennis Two tennis players play a game which demonstates in-VM pipes. 
org.apache.mina.example.udp   
org.apache.mina.example.udp.client   
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   
org.apache.mina.proxy   
 

Uses of IoHandler in org.apache.mina.core.service
 

Classes in org.apache.mina.core.service that implement IoHandler
 class IoHandlerAdapter
          An adapter class for IoHandler.
 

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

Methods in org.apache.mina.core.service 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)
          Sets the handler which will handle all connections managed by this service.
 

Uses of IoHandler in org.apache.mina.core.session
 

Methods in org.apache.mina.core.session that return IoHandler
 IoHandler IoSession.getHandler()
           
 IoHandler DummySession.getHandler()
           
 IoHandler AbstractIoSession.getHandler()
          
 

Methods in org.apache.mina.core.session with parameters of type IoHandler
 void DummySession.setHandler(IoHandler handler)
          Sets the IoHandler which handles this session.
 

Uses of IoHandler in org.apache.mina.example.chat
 

Classes in org.apache.mina.example.chat that implement IoHandler
 class ChatProtocolHandler
          IoHandler implementation of a simple chat server protocol.
 

Uses of IoHandler in org.apache.mina.example.chat.client
 

Classes in org.apache.mina.example.chat.client that implement IoHandler
 class SwingChatClientHandler
          IoHandler implementation of the client side of the simple chat protocol.
 

Constructors in org.apache.mina.example.chat.client with parameters of type IoHandler
ChatClientSupport(java.lang.String name, IoHandler handler)
           
 

Uses of IoHandler in org.apache.mina.example.echoserver
 

Classes in org.apache.mina.example.echoserver that implement IoHandler
 class EchoProtocolHandler
          IoHandler implementation for echo server.
 

Uses of IoHandler in org.apache.mina.example.gettingstarted.timeserver
 

Classes in org.apache.mina.example.gettingstarted.timeserver that implement IoHandler
 class TimeServerHandler
          The Time Server handler : it return the current date when a message is received, or close the session if the "quit" message is received.
 

Uses of IoHandler in org.apache.mina.example.haiku
 

Classes in org.apache.mina.example.haiku that implement IoHandler
 class HaikuValidatorIoHandler
           
 

Uses of IoHandler in org.apache.mina.example.imagine.step1.client
 

Classes in org.apache.mina.example.imagine.step1.client that implement IoHandler
 class ImageClient
          client for the ImageServer
 

Uses of IoHandler in org.apache.mina.example.imagine.step1.server
 

Classes in org.apache.mina.example.imagine.step1.server that implement IoHandler
 class ImageServerIoHandler
          server-side IoHandler
 

Uses of IoHandler in org.apache.mina.example.netcat
 

Classes in org.apache.mina.example.netcat that implement IoHandler
 class NetCatProtocolHandler
          IoHandler implementation for NetCat client.
 

Uses of IoHandler in org.apache.mina.example.proxy
 

Classes in org.apache.mina.example.proxy that implement IoHandler
 class ClientToProxyIoHandler
          Handles the client to proxy part of the proxied connection.
 class ServerToProxyIoHandler
          Handles the server to proxy part of the proxied connection.
 

Uses of IoHandler in org.apache.mina.example.reverser
 

Classes in org.apache.mina.example.reverser that implement IoHandler
 class ReverseProtocolHandler
          IoHandler implementation of reverser server protocol.
 

Uses of IoHandler in org.apache.mina.example.sumup
 

Classes in org.apache.mina.example.sumup that implement IoHandler
 class ClientSessionHandler
          IoHandler for SumUp client.
 class ServerSessionHandler
          IoHandler for SumUp server.
 

Uses of IoHandler in org.apache.mina.example.tennis
 

Classes in org.apache.mina.example.tennis that implement IoHandler
 class TennisPlayer
          A IoHandler implementation which plays a tennis game.
 

Uses of IoHandler in org.apache.mina.example.udp
 

Classes in org.apache.mina.example.udp that implement IoHandler
 class MemoryMonitorHandler
          Class the extends IoHandlerAdapter in order to properly handle connections and the data the connections send
 

Uses of IoHandler in org.apache.mina.example.udp.client
 

Classes in org.apache.mina.example.udp.client that implement IoHandler
 class MemMonClient
          Sends its memory usage to the MemoryMonitor server.
 

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
          Deprecated. 
 

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.
 

Uses of IoHandler in org.apache.mina.proxy
 

Classes in org.apache.mina.proxy that implement IoHandler
 class AbstractProxyIoHandler
          AbstractProxyIoHandler.java - IoHandler that intercepts events until handshake is complete.
 



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