Package org.apache.sshd.common.io
Interface IoHandler
-
- All Known Subinterfaces:
X11ForwardSupport
- All Known Implementing Classes:
AbstractSessionFactory
,AbstractSessionIoHandler
,DefaultForwarder.StaticIoHandler
,DefaultX11ForwardSupport
,SessionFactory
,SessionFactory
,SocksProxy
,TcpipServerChannel.PortIoHandler
public interface IoHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
exceptionCaught(IoSession session, java.lang.Throwable cause)
void
messageReceived(IoSession session, Readable message)
void
sessionClosed(IoSession session)
void
sessionCreated(IoSession session)
-
-
-
Method Detail
-
sessionCreated
void sessionCreated(IoSession session) throws java.lang.Exception
- Throws:
java.lang.Exception
-
sessionClosed
void sessionClosed(IoSession session) throws java.lang.Exception
- Throws:
java.lang.Exception
-
exceptionCaught
void exceptionCaught(IoSession session, java.lang.Throwable cause) throws java.lang.Exception
- Throws:
java.lang.Exception
-
-