Example usage for io.netty.handler.codec.http2 Http2EventAdapter subclass-usage

List of usage examples for io.netty.handler.codec.http2 Http2EventAdapter subclass-usage

Introduction

In this page you can find the example usage for io.netty.handler.codec.http2 Http2EventAdapter subclass-usage.

Usage

From source file com.linecorp.armeria.server.http.Http2RequestDecoder.java

final class Http2RequestDecoder extends Http2EventAdapter {

    private final Http2ConnectionEncoder writer;
    private final InboundTrafficController inboundTrafficController;
    private final IntObjectMap<DecodedHttpRequest> requests = new IntObjectHashMap<>();
    private int nextId;

From source file com.linecorp.armeria.server.Http2RequestDecoder.java

final class Http2RequestDecoder extends Http2EventAdapter {

    private final ServerConfig cfg;
    private final Http2ConnectionEncoder writer;
    private final InboundTrafficController inboundTrafficController;
    private final IntObjectMap<DecodedHttpRequest> requests = new IntObjectHashMap<>();

From source file com.linkedin.r2.transport.http.client.Http2FrameListener.java

/**
 * Listens to HTTP/2 frames and assembles {@link com.linkedin.r2.message.stream.StreamRequest}
 * and its {@link com.linkedin.r2.message.stream.entitystream.EntityStream}. Http/2 stream level
 * errors should cause only the stream to be reset, not the entire connection. As a result, errors
 * specific to a stream should not result in throwing non HTTP/2 stream exceptions in this codec.
 */

From source file io.gatling.http.client.impl.ChunkedInboundHttp2ToHttpAdapter.java

public class ChunkedInboundHttp2ToHttpAdapter extends Http2EventAdapter {

    private final boolean propagateSettings;
    private final Http2Connection connection;
    private final boolean validateHttpHeaders;
    private final Promise<Channel> whenHttp2Handshake;

From source file org.wso2.carbon.http2.transport.util.Http2FrameListenAdapter.java

/**
 * Listen HTTP2 Events and Creating appropriate HTTP2 frames
 */
public class Http2FrameListenAdapter extends Http2EventAdapter {

    private final Log log = LogFactory.getLog(Http2FrameListenAdapter.class);

From source file org.wso2.carbon.inbound.endpoint.protocol.http2.Http2FrameListenAdapter.java

/**
 * Listen to Http2 Events and Wrap the with appropriate frame
 */
public class Http2FrameListenAdapter extends Http2EventAdapter {

    private final Log log = LogFactory.getLog(Http2FrameListenAdapter.class);