|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.mina.core.service.IoHandlerAdapter
org.apache.mina.example.echoserver.EchoProtocolHandler
public class EchoProtocolHandler
IoHandler
implementation for echo server.
Constructor Summary | |
---|---|
EchoProtocolHandler()
|
Method Summary | |
---|---|
void |
exceptionCaught(IoSession session,
java.lang.Throwable cause)
Invoked when any exception is thrown by user IoHandler
implementation or by MINA. |
void |
messageReceived(IoSession session,
java.lang.Object message)
Invoked when a message is received. |
void |
sessionClosed(IoSession session)
Invoked when a connection is closed. |
void |
sessionCreated(IoSession session)
Invoked from an I/O processor thread when a new connection has been created. |
void |
sessionIdle(IoSession session,
IdleStatus status)
Invoked with the related IdleStatus when a connection becomes idle. |
void |
sessionOpened(IoSession session)
Invoked when a connection has been opened. |
Methods inherited from class org.apache.mina.core.service.IoHandlerAdapter |
---|
messageSent |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public EchoProtocolHandler()
Method Detail |
---|
public void sessionCreated(IoSession session)
IoHandler
sessionCreated
in interface IoHandler
sessionCreated
in class IoHandlerAdapter
public void sessionClosed(IoSession session) throws java.lang.Exception
IoHandler
sessionClosed
in interface IoHandler
sessionClosed
in class IoHandlerAdapter
java.lang.Exception
public void sessionOpened(IoSession session) throws java.lang.Exception
IoHandler
IoHandler.sessionCreated(IoSession)
. The biggest difference from
IoHandler.sessionCreated(IoSession)
is that it's invoked from other thread
than an I/O processor thread once thread model is configured properly.
sessionOpened
in interface IoHandler
sessionOpened
in class IoHandlerAdapter
java.lang.Exception
public void sessionIdle(IoSession session, IdleStatus status)
IoHandler
IdleStatus
when a connection becomes idle.
This method is not invoked if the transport type is UDP; it's a known bug,
and will be fixed in 2.0.
sessionIdle
in interface IoHandler
sessionIdle
in class IoHandlerAdapter
public void exceptionCaught(IoSession session, java.lang.Throwable cause)
IoHandler
IoHandler
implementation or by MINA. If cause
is an instance of
IOException
, MINA will close the connection automatically.
exceptionCaught
in interface IoHandler
exceptionCaught
in class IoHandlerAdapter
public void messageReceived(IoSession session, java.lang.Object message) throws java.lang.Exception
IoHandler
messageReceived
in interface IoHandler
messageReceived
in class IoHandlerAdapter
java.lang.Exception
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |