|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.mina.io.IoHandlerAdapter
public class IoHandlerAdapter
An abstract adapter class for IoHandler. You can extend this class
and selectively override required event handler methods only. All methods
do nothing by default.
Please refer to
NetCatProtocolHandler
example.
| Constructor Summary | |
|---|---|
IoHandlerAdapter()
|
|
| Method Summary | |
|---|---|
void |
dataRead(IoSession session,
ByteBuffer buf)
Invoked when data is read from the connection. |
void |
dataWritten(IoSession session,
java.lang.Object marker)
Invoked when MINA wrote IoSession.write(ByteBuffer, Object)
request successfully. |
void |
exceptionCaught(IoSession session,
java.lang.Throwable cause)
Invoked when any exception is thrown by user IoHandler
implementation or by MINA. |
void |
sessionClosed(IoSession session)
Invoked when the connection is closed. |
void |
sessionCreated(IoSession session)
Invoked when the session is created. |
void |
sessionIdle(IoSession session,
IdleStatus status)
Invoked when the connection is idle. |
void |
sessionOpened(IoSession session)
Invoked when the connection is opened. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public IoHandlerAdapter()
| Method Detail |
|---|
public void sessionCreated(IoSession session)
throws java.lang.Exception
IoHandler
sessionCreated in interface IoHandlerjava.lang.Exception
public void sessionOpened(IoSession session)
throws java.lang.Exception
IoHandler
sessionOpened in interface IoHandlerjava.lang.Exception
public void sessionClosed(IoSession session)
throws java.lang.Exception
IoHandler
sessionClosed in interface IoHandlerjava.lang.Exception
public void sessionIdle(IoSession session,
IdleStatus status)
throws java.lang.Exception
IoHandlerIdleStatus. This
method is not invoked if the transport type is UDP.
sessionIdle in interface IoHandlerjava.lang.Exception
public void exceptionCaught(IoSession session,
java.lang.Throwable cause)
throws java.lang.Exception
IoHandlerIoHandler
implementation or by MINA. If cause is instanceof
IOException, MINA will close the connection automatically.
exceptionCaught in interface IoHandlerjava.lang.Exception
public void dataRead(IoSession session,
ByteBuffer buf)
throws java.lang.Exception
IoHandlerbuf to get read data. buf returns to
the internal buffer pool of MINA after this method is invoked, so
please don't try to reuse it.
dataRead in interface IoHandlerjava.lang.Exception
public void dataWritten(IoSession session,
java.lang.Object marker)
throws java.lang.Exception
IoHandlerIoSession.write(ByteBuffer, Object)
request successfully. marker is what you specified at the
point of invocation of IoSession.write(ByteBuffer, Object).
dataWritten in interface IoHandlerjava.lang.Exception
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||