Uses of Interface
org.apache.mina.handler.demux.ExceptionHandler
-
Packages that use ExceptionHandler Package Description org.apache.mina.handler.demux A handler implementation that helps you implement complex protocols by splitting messageReceived handlers into multiple sub-handlers. -
-
Uses of ExceptionHandler in org.apache.mina.handler.demux
Fields in org.apache.mina.handler.demux declared as ExceptionHandler Modifier and Type Field Description static ExceptionHandler<Throwable>
ExceptionHandler. CLOSE
AExceptionHandler
that closes the session immediately.static ExceptionHandler<Throwable>
ExceptionHandler. NOOP
AExceptionHandler
that does nothing.Methods in org.apache.mina.handler.demux that return ExceptionHandler Modifier and Type Method Description <E extends Throwable>
ExceptionHandler<? super E>DemuxingIoHandler. addExceptionHandler(Class<E> type, ExceptionHandler<? super E> handler)
Registers aMessageHandler
that receives the messages of the specifiedtype
.protected ExceptionHandler<Throwable>
DemuxingIoHandler. findExceptionHandler(Class<? extends Throwable> type)
<E extends Throwable>
ExceptionHandler<? super E>DemuxingIoHandler. removeExceptionHandler(Class<E> type)
Deregisters aMessageHandler
that receives the messages of the specifiedtype
.Methods in org.apache.mina.handler.demux that return types with arguments of type ExceptionHandler Modifier and Type Method Description Map<Class<?>,ExceptionHandler<?>>
DemuxingIoHandler. getExceptionHandlerMap()
Methods in org.apache.mina.handler.demux with parameters of type ExceptionHandler Modifier and Type Method Description <E extends Throwable>
ExceptionHandler<? super E>DemuxingIoHandler. addExceptionHandler(Class<E> type, ExceptionHandler<? super E> handler)
Registers aMessageHandler
that receives the messages of the specifiedtype
.
-