Example usage for io.netty.util.concurrent GenericFutureListener interface-usage

List of usage examples for io.netty.util.concurrent GenericFutureListener interface-usage

Introduction

In this page you can find the example usage for io.netty.util.concurrent GenericFutureListener interface-usage.

Usage

From source file com.allanbank.mongodb.netty.NettyCloseListener.java

/**
 * NettyCloseListener provides the listener for notification that the Netty
 * channel has closed.
 *
 * @copyright 2015, Allanbank Consulting, Inc., All Rights Reserved
 */

From source file com.allanbank.mongodb.netty.NettyTlsConnectionCompletedListener.java

/**
 * NettyTlsConnectionCompletedListener provides a listener to verify the
 * connected to host when the TLS handshake completes.
 *
 * @copyright 2014-2015, Allanbank Consulting, Inc., All Rights Reserved
 */

From source file com.heliosapm.webrpc.jsonservice.JSONSubscriber.java

/**
 * <p>Title: JSONSubscriber</p>
 * <p>Description: Represents a proxy to a JSON service subscriber</p> 
 * <p>Company: Helios Development Group LLC</p>
 * @author Whitehead (nwhitehead AT heliosdev DOT org)
 * <p><code>com.heliosapm.webrpc.jsonservice.JSONSubscriber</code></p>

From source file com.jfastnet.peers.netty.FutureGenericFutureListener.java

/** @author Klaus Pfeiffer - klaus@allpiper.com */
@Slf4j
@Accessors(chain = true)
public class FutureGenericFutureListener implements GenericFutureListener<Future<? super Void>> {

    String action;

From source file com.spotify.netty4.handler.codec.zmtp.ListenableFutureAdapter.java

public class ListenableFutureAdapter<V> extends AbstractFuture<V> implements GenericFutureListener<Future<V>> {

    static <T> ListenableFuture<T> listenable(final Future<T> future) {
        final ListenableFutureAdapter<T> adapter = new ListenableFutureAdapter<T>();
        future.addListener(adapter);
        return adapter;

From source file com.turo.pushy.apns.util.concurrent.PushNotificationResponseListener.java

/**
 * A type-specific convenience interface for listening for the result of an attempt to send a push notification.
 *
 * @param <T> the type of push notification sent
 *
 * @see com.turo.pushy.apns.ApnsClient#sendNotification(ApnsPushNotification)

From source file connection.bootstrap.Authentication.java

/**
 *
 * @author Bernhard
 */
public class Authentication implements GenericFutureListener<Future<Channel>> {
    private SslHandler sslHandler;

From source file dorkbox.network.connection.PingListener.java

public abstract class PingListener<C extends Connection> implements GenericFutureListener<Future<PingTuple<C>>> {

    public PingListener() {
    }

    @Override

From source file org.apache.drill.exec.rpc.ChannelListenerWithCoordinationId.java

public interface ChannelListenerWithCoordinationId extends GenericFutureListener<ChannelFuture> {
    public int getCoordinationId();
}

From source file org.apache.hadoop.hbase.client.ResponseFutureListener.java

/**
 * Specific interface for the Response future listener
 * @param <V> Value type.
 */
@InterfaceAudience.Private
public interface ResponseFutureListener<V> extends GenericFutureListener<Future<V>> {