Uses of Interface
org.apache.mina.handler.demux.ExceptionHandler
Packages that use ExceptionHandler
Package
Description
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 ExceptionHandlerModifier and TypeFieldDescriptionstatic final ExceptionHandler<Throwable> ExceptionHandler.CLOSEAExceptionHandlerthat closes the session immediately.static final ExceptionHandler<Throwable> ExceptionHandler.NOOPAExceptionHandlerthat does nothing.Fields in org.apache.mina.handler.demux with type parameters of type ExceptionHandlerModifier and TypeFieldDescriptionprivate final Map<Class<?>, ExceptionHandler<?>> DemuxingIoHandler.exceptionHandlerCacheprivate final Map<Class<?>, ExceptionHandler<?>> DemuxingIoHandler.exceptionHandlersMethods in org.apache.mina.handler.demux that return ExceptionHandlerModifier and TypeMethodDescription<E extends Throwable>
ExceptionHandler<? super E> DemuxingIoHandler.addExceptionHandler(Class<E> type, ExceptionHandler<? super E> handler) Registers aMessageHandlerthat receives the messages of the specifiedtype.private ExceptionHandler<Throwable> DemuxingIoHandler.findExceptionHandler(Class<?> type, Set<Class<?>> triedClasses) protected ExceptionHandler<Throwable> DemuxingIoHandler.findExceptionHandler(Class<? extends Throwable> type) <E extends Throwable>
ExceptionHandler<? super E> DemuxingIoHandler.removeExceptionHandler(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 ExceptionHandlerModifier and TypeMethodDescriptionMap<Class<?>, ExceptionHandler<?>> DemuxingIoHandler.getExceptionHandlerMap()Methods in org.apache.mina.handler.demux with parameters of type ExceptionHandlerModifier and TypeMethodDescription<E extends Throwable>
ExceptionHandler<? super E> DemuxingIoHandler.addExceptionHandler(Class<E> type, ExceptionHandler<? super E> handler) Registers aMessageHandlerthat receives the messages of the specifiedtype.