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 voidexceptionCaught(IoSession session, java.lang.Throwable cause)voidmessageReceived(IoSession session, Readable message)voidsessionClosed(IoSession session)voidsessionCreated(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
-
-