Package org.apache.sshd.common.forward
Class DefaultForwardingFilter.StaticIoHandler
- java.lang.Object
-
- org.apache.sshd.common.forward.DefaultForwardingFilter.StaticIoHandler
-
- All Implemented Interfaces:
IoHandler
- Enclosing class:
- DefaultForwardingFilter
class DefaultForwardingFilter.StaticIoHandler extends java.lang.Object implements IoHandler
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
debugEnabled
private java.util.concurrent.atomic.AtomicLong
messagesCounter
private boolean
traceEnabled
-
Constructor Summary
Constructors Constructor Description StaticIoHandler()
-
Method Summary
All Methods Instance Methods Concrete 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
public void sessionCreated(IoSession session) throws java.lang.Exception
- Specified by:
sessionCreated
in interfaceIoHandler
- Throws:
java.lang.Exception
-
sessionClosed
public void sessionClosed(IoSession session) throws java.lang.Exception
- Specified by:
sessionClosed
in interfaceIoHandler
- Throws:
java.lang.Exception
-
messageReceived
public void messageReceived(IoSession session, Readable message) throws java.lang.Exception
- Specified by:
messageReceived
in interfaceIoHandler
- Throws:
java.lang.Exception
-
exceptionCaught
public void exceptionCaught(IoSession session, java.lang.Throwable cause) throws java.lang.Exception
- Specified by:
exceptionCaught
in interfaceIoHandler
- Throws:
java.lang.Exception
-
-