Example usage for io.netty.channel ChannelFutureListener interface-usage

List of usage examples for io.netty.channel ChannelFutureListener interface-usage

Introduction

In this page you can find the example usage for io.netty.channel ChannelFutureListener interface-usage.

Usage

From source file io.advantageous.conekt.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 io.apigee.trireme.container.netty.NettyHttpFuture.java

public class NettyHttpFuture extends HttpFuture implements ChannelFutureListener {
    private final ChannelFuture channel;

    public NettyHttpFuture(ChannelFuture channel) {
        this.channel = channel;
    }

From source file io.jsync.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 io.netlibs.bgp.handlers.BgpEventFireChannelFutureListener.java

/**
 * @author Rainer Bieniek (Rainer.Bieniek@web.de)
 *
 */
public class BgpEventFireChannelFutureListener implements ChannelFutureListener {

From source file io.reactivex.netty.client.ClientConnectionHandler.java

/**
 * An implementation of {@link ConnectionHandler} that provides notifications to an {@link Observer} of
 * {@link ObservableConnection} pertaining to connection establishment.
 *
 * @param <I> The type of the object that is read from a new connection handled by this handler.
 * @param <O> The type of objects that are written to a new connection handled by this handler.

From source file io.reactivex.netty.protocol.http.MultipleFutureListener.java

/**
 * @author Nitesh Kant
 */
public class MultipleFutureListener implements ChannelFutureListener {

    private final ChannelPromise completionPromise;

From source file io.reactivex.netty.util.MultipleFutureListener.java

/**
 * @author Nitesh Kant
 */
public class MultipleFutureListener implements ChannelFutureListener {

    private final ChannelPromise completionPromise;

From source file io.vertx.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 io.vertx.core.net.impl.ChannelFutureListenerAdapter.java

/**
 * @author <a href="mailto:nmaurer@redhat.com">Norman Maurer</a>
 */
public final class ChannelFutureListenerAdapter<T> implements ChannelFutureListener {

    private final Handler<AsyncResult<T>> handler;

From source file org.apache.camel.component.netty4.handlers.ServerResponseFutureListener.java

/**
 * A {@link io.netty.channel.ChannelFutureListener} that performs the disconnect logic when
 * sending the response is complete.
 */
public class ServerResponseFutureListener implements ChannelFutureListener {