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<java.lang.Throwable>ExceptionHandler. CLOSEAExceptionHandlerthat closes the session immediately.static ExceptionHandler<java.lang.Throwable>ExceptionHandler. NOOPAExceptionHandlerthat does nothing.Methods in org.apache.mina.handler.demux that return ExceptionHandler Modifier and Type Method Description <E extends java.lang.Throwable>
ExceptionHandler<? super E>DemuxingIoHandler. addExceptionHandler(java.lang.Class<E> type, ExceptionHandler<? super E> handler)Registers aMessageHandlerthat receives the messages of the specifiedtype.protected ExceptionHandler<java.lang.Throwable>DemuxingIoHandler. findExceptionHandler(java.lang.Class<? extends java.lang.Throwable> type)<E extends java.lang.Throwable>
ExceptionHandler<? super E>DemuxingIoHandler. removeExceptionHandler(java.lang.Class<E> type)Deregisters aMessageHandlerthat 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 java.util.Map<java.lang.Class<?>,ExceptionHandler<?>>DemuxingIoHandler. getExceptionHandlerMap()Methods in org.apache.mina.handler.demux with parameters of type ExceptionHandler Modifier and Type Method Description <E extends java.lang.Throwable>
ExceptionHandler<? super E>DemuxingIoHandler. addExceptionHandler(java.lang.Class<E> type, ExceptionHandler<? super E> handler)Registers aMessageHandlerthat receives the messages of the specifiedtype.
-