Interface ConnectListener
-
- All Known Implementing Classes:
SocketForwardingConnectListener
public interface ConnectListener
A connect listener is just that: it listens for new forwarded channels and can be delegated charge of them.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
gotConnect(Channel.Forwarded chan)
Notify this listener of a new forwarded channel.
-
-
-
Method Detail
-
gotConnect
void gotConnect(Channel.Forwarded chan) throws java.io.IOException
Notify this listener of a new forwarded channel. An implementation should firstly confirm or reject that channel.- Parameters:
chan
- the forwarded channel- Throws:
java.io.IOException
- if there is a problem handling the channel
-
-