|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ExceptionHandler<E extends Throwable>
A handler interface that DemuxingIoHandler forwards
exceptionCaught events to. You have to register your
handler with the type of exception you want to get notified using
DemuxingIoHandler.addExceptionHandler(Class, ExceptionHandler).
| Field Summary | |
|---|---|
static ExceptionHandler<Throwable> |
CLOSE
A ExceptionHandler that closes the session immediately. |
static ExceptionHandler<Throwable> |
NOOP
A ExceptionHandler that does nothing. |
| Method Summary | |
|---|---|
void |
exceptionCaught(IoSession session,
E cause)
Invoked when the specific type of exception is caught from the specified session. |
| Field Detail |
|---|
static final ExceptionHandler<Throwable> NOOP
ExceptionHandler that does nothing. This is useful when
you want to ignore an exception of a specific type silently.
static final ExceptionHandler<Throwable> CLOSE
ExceptionHandler that closes the session immediately.
This is useful when you want to close the session when an exception of
a specific type is raised.
| Method Detail |
|---|
void exceptionCaught(IoSession session,
E cause)
throws Exception
session.
Exception
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||