|
||||||||||
| 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.udp.client.MemMonClient
public class MemMonClient
Sends its memory usage to the MemoryMonitor server.
| Constructor Summary | |
|---|---|
MemMonClient()
Default constructor. |
|
| Method Summary | |
|---|---|
void |
exceptionCaught(IoSession session,
java.lang.Throwable cause)
Invoked when any exception is thrown by user IoHandler
implementation or by MINA. |
static void |
main(java.lang.String[] args)
|
void |
messageReceived(IoSession session,
java.lang.Object message)
Invoked when a message is received. |
void |
messageSent(IoSession session,
java.lang.Object message)
Invoked when a message written by IoSession.write(Object) is
sent out. |
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 java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public MemMonClient()
| Method Detail |
|---|
public void exceptionCaught(IoSession session,
java.lang.Throwable cause)
throws java.lang.Exception
IoHandlerIoHandler
implementation or by MINA. If cause is an instance of
IOException, MINA will close the connection automatically.
exceptionCaught in interface IoHandlerexceptionCaught in class IoHandlerAdapterjava.lang.Exception
public void messageReceived(IoSession session,
java.lang.Object message)
throws java.lang.Exception
IoHandler
messageReceived in interface IoHandlermessageReceived in class IoHandlerAdapterjava.lang.Exception
public void messageSent(IoSession session,
java.lang.Object message)
throws java.lang.Exception
IoHandlerIoSession.write(Object) is
sent out.
messageSent in interface IoHandlermessageSent in class IoHandlerAdapterjava.lang.Exception
public void sessionClosed(IoSession session)
throws java.lang.Exception
IoHandler
sessionClosed in interface IoHandlersessionClosed in class IoHandlerAdapterjava.lang.Exception
public void sessionCreated(IoSession session)
throws java.lang.Exception
IoHandler
sessionCreated in interface IoHandlersessionCreated in class IoHandlerAdapterjava.lang.Exception
public void sessionIdle(IoSession session,
IdleStatus status)
throws java.lang.Exception
IoHandlerIdleStatus 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 IoHandlersessionIdle in class IoHandlerAdapterjava.lang.Exception
public void sessionOpened(IoSession session)
throws java.lang.Exception
IoHandlerIoHandler.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 IoHandlersessionOpened in class IoHandlerAdapterjava.lang.Exceptionpublic static void main(java.lang.String[] args)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||