List of usage examples for io.netty.channel ChannelFutureListener interface-usage
From source file org.opendaylight.netconf.netty.EchoClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class EchoClientHandler extends ChannelInboundHandlerAdapter implements ChannelFutureListener {
From source file org.opendaylight.ovsdb.lib.impl.ChannelConnectionHandler.java
public class ChannelConnectionHandler implements ChannelFutureListener { OvsdbClient client; public ChannelConnectionHandler(OvsdbClient client) { this.client = client; }
From source file org.opendaylight.ovsdb.plugin.ChannelConnectionHandler.java
public class ChannelConnectionHandler implements ChannelFutureListener { Node node; ConnectionService connectionService; public Node getNode() { return node;
From source file org.spout.engine.listener.channel.SpoutProxyConnectListener.java
public class SpoutProxyConnectListener implements ChannelFutureListener { private final Engine engine; private final SpoutServerSession<?> session; private final String playerName; public SpoutProxyConnectListener(Engine engine, String playerName, ServerSession session) {
From source file org.vertx.java.core.datagram.impl.DatagramChannelFutureListener.java
/** * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a> */ final class DatagramChannelFutureListener<T> implements ChannelFutureListener { private final Handler<AsyncResult<T>> handler; private final T result;
From source file org.waarp.gateway.kernel.http.HttpCleanChannelFutureListener.java
/** * @author Frederic Bregier * */ class HttpCleanChannelFutureListener implements ChannelFutureListener { protected final HttpRequestHandler handler;
From source file org.wenxueliu.netty.client.ChannelConnectionListener.java
/** * The listener class. Handles when the node disconnect. */ public class ChannelConnectionListener implements ChannelFutureListener { protected static final Logger log = LoggerFactory.getLogger(ChannelConnectionListener.class);
From source file org.wso2.carbon.transport.http.netty.sender.channel.TargetChannelListener.java
/** * A class that get executed when the connection is created. */ public class TargetChannelListener implements ChannelFutureListener { private static final Logger log = LoggerFactory.getLogger(TargetChannelListener.class);
From source file poke.server.managers.JobManager.java
class NewListener implements ChannelFutureListener { @Override public void operationComplete(ChannelFuture arg0) throws Exception { // TODO Auto-generated method stub System.out.println("(((((((((((((((((((((((((((9Send Message))))))))))))))))))))))");
From source file reactor.ipc.netty.channel.ChannelConnectHandler.java
/** * @author Stephane Maldini */ final class ChannelConnectHandler implements ChannelFutureListener, Cancellation { final MonoSink<NettyState> sink;