Example usage for io.netty.handler.codec.http2 Http2Connection.Listener interface-usage

List of usage examples for io.netty.handler.codec.http2 Http2Connection.Listener interface-usage

Introduction

In this page you can find the example usage for io.netty.handler.codec.http2 Http2Connection.Listener interface-usage.

Usage

From source file com.linecorp.armeria.client.http.Http2ResponseDecoder.java

final class Http2ResponseDecoder extends HttpResponseDecoder
        implements Http2Connection.Listener, Http2FrameListener {

    Http2ResponseDecoder(Channel channel) {
        super(channel);
    }

From source file com.linecorp.armeria.client.Http2ResponseDecoder.java

final class Http2ResponseDecoder extends HttpResponseDecoder
        implements Http2Connection.Listener, Http2FrameListener {

    private static final Logger logger = LoggerFactory.getLogger(Http2ResponseDecoder.class);

    private final Http2Connection conn;

From source file com.turo.pushy.apns.ApnsClientHandler.java

class ApnsClientHandler extends Http2ConnectionHandler implements Http2FrameListener, Http2Connection.Listener {

    private final Map<Integer, PushNotificationPromise> unattachedResponsePromisesByStreamId = new IntObjectHashMap<>();

    private final Http2Connection.PropertyKey responseHeadersPropertyKey;
    private final Http2Connection.PropertyKey responsePromisePropertyKey;

From source file io.vertx.core.http.impl.VertxHttp2ConnectionHandler.java

/**
 * @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
 */
class VertxHttp2ConnectionHandler<C extends Http2ConnectionBase> extends Http2ConnectionHandler
        implements Http2Connection.Listener {