Uses of Interface
org.apache.mina.handler.demux.MessageHandler

Packages that use MessageHandler
org.apache.mina.handler.demux A handler implementation that helps you implement complex protocols by splitting messageReceived handlers into multiple sub-handlers. 
 

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

Fields in org.apache.mina.handler.demux declared as MessageHandler
static MessageHandler<Object> MessageHandler.NOOP
          A MessageHandler that does nothing.
 

Methods in org.apache.mina.handler.demux that return MessageHandler
<E> MessageHandler<? super E>
DemuxingIoHandler.addMessageHandler(Class<E> type, MessageHandler<? super E> handler)
          Registers a MessageHandler that receives the messages of the specified type.
protected  MessageHandler<Object> DemuxingIoHandler.findHandler(Class type)
           
<E> MessageHandler<? super E>
DemuxingIoHandler.getMessageHandler(Class<E> type)
          Returns the MessageHandler which is registered to process the specified type.
<E> MessageHandler<? super E>
DemuxingIoHandler.removeMessageHandler(Class<E> type)
          Deregisters a MessageHandler that receives the messages of the specified type.
 

Methods in org.apache.mina.handler.demux that return types with arguments of type MessageHandler
 Map<Class,MessageHandler> DemuxingIoHandler.getMessageHandlerMap()
          Returns the Map which contains all messageType-MessageHandler pairs registered to this handler.
 

Methods in org.apache.mina.handler.demux with parameters of type MessageHandler
<E> MessageHandler<? super E>
DemuxingIoHandler.addMessageHandler(Class<E> type, MessageHandler<? super E> handler)
          Registers a MessageHandler that receives the messages of the specified type.
 



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