本文整理汇总了Java中io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler类的典型用法代码示例。如果您正苦于以下问题:Java HttpToHttp2ConnectionHandler类的具体用法?Java HttpToHttp2ConnectionHandler怎么用?Java HttpToHttp2ConnectionHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
HttpToHttp2ConnectionHandler类属于io.netty.handler.codec.http2包,在下文中一共展示了HttpToHttp2ConnectionHandler类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: initChannel
import io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler; //导入依赖的package包/类
@Override
public void initChannel(SocketChannel ch) throws Exception {
final Http2Connection connection = new DefaultHttp2Connection(false);
final Http2FrameWriter frameWriter = frameWriter();
connectionHandler = new HttpToHttp2ConnectionHandler(connection,
frameReader(),
frameWriter,
new DelegatingDecompressorFrameListener(connection,
new InboundHttp2ToHttpAdapter.Builder(connection)
.maxContentLength(maxContentLength)
.propagateSettings(true)
.build()));
responseHandler = new HttpResponseHandler();
settingsHandler = new Http2SettingsHandler(ch.newPromise());
configureClearText(ch);
}
开发者ID:duchien85,项目名称:netty-cookbook,代码行数:17,代码来源:Http2ClientInitializer.java
示例2: initChannel
import io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler; //导入依赖的package包/类
@Override
public void initChannel(SocketChannel ch) throws Exception {
final Http2Connection connection = new DefaultHttp2Connection(false);
connectionHandler = new HttpToHttp2ConnectionHandler(connection,
frameReader(),
frameWriter(),
new DelegatingDecompressorFrameListener(connection,
new InboundHttp2ToHttpAdapter.Builder(connection)
.maxContentLength(maxContentLength)
.propagateSettings(true)
.build()));
responseHandler = new HttpResponseHandler();
settingsHandler = new Http2SettingsHandler(ch.newPromise());
if (sslCtx != null) {
configureSsl(ch);
} else {
configureClearText(ch);
}
}
开发者ID:syucream,项目名称:jmeter-http2-plugin,代码行数:21,代码来源:Http2ClientInitializer.java
示例3: newHttp2ConnectionHandler
import io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler; //导入依赖的package包/类
private Http2ConnectionHandler newHttp2ConnectionHandler(final ChannelPipeline p) {
DefaultHttp2Connection connection = new DefaultHttp2Connection(true);
InboundHttp2ToHttpAdapter listener = new InboundHttp2ToHttpAdapterBuilder(connection)
.propagateSettings(false)
.validateHttpHeaders(false)
.maxContentLength(maxContentLength)
.build();
HttpToHttp2ConnectionHandler http2handler = new HttpToHttp2ConnectionHandlerBuilder()
.frameListener(listener)
.frameLogger(new Http2FrameLogger(LogLevel.DEBUG))
.connection(connection)
.build();
return http2handler;
}
开发者ID:jooby-project,项目名称:jooby,代码行数:17,代码来源:NettyPipeline.java
示例4: setUp
import io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler; //导入依赖的package包/类
@BeforeClass
public static void setUp() throws IOException, URISyntaxException,
TimeoutException {
CLUSTER = new MiniDFSCluster.Builder(CONF).numDataNodes(1).build();
CLUSTER.waitActive();
RESPONSE_HANDLER = new Http2ResponseHandler();
Bootstrap bootstrap =
new Bootstrap()
.group(WORKER_GROUP)
.channel(NioSocketChannel.class)
.remoteAddress("127.0.0.1",
CLUSTER.getDataNodes().get(0).getInfoPort())
.handler(new ChannelInitializer<Channel>() {
@Override
protected void initChannel(Channel ch) throws Exception {
Http2Connection connection = new DefaultHttp2Connection(false);
Http2ConnectionHandler connectionHandler =
new HttpToHttp2ConnectionHandler(connection, frameReader(),
frameWriter(), new DelegatingDecompressorFrameListener(
connection, new InboundHttp2ToHttpAdapter.Builder(
connection).maxContentLength(Integer.MAX_VALUE)
.propagateSettings(true).build()));
ch.pipeline().addLast(connectionHandler, RESPONSE_HANDLER);
}
});
CHANNEL = bootstrap.connect().syncUninterruptibly().channel();
}
开发者ID:aliyun-beta,项目名称:aliyun-oss-hadoop-fs,代码行数:31,代码来源:TestDtpHttp2.java
示例5: initChannel
import io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler; //导入依赖的package包/类
@Override
public void initChannel(SocketChannel ch) throws Exception {
final ChannelPipeline p = ch.pipeline();
final Http2Connection conn = new DefaultHttp2Connection(false);
final HttpToHttp2ConnectionHandler connHandler = new HttpToHttp2ConnectionHandlerBuilder()
.connection(conn)
.frameListener(new DelegatingDecompressorFrameListener(
conn,
new InboundHttp2ToHttpAdapterBuilder(conn)
.maxContentLength(Integer.MAX_VALUE)
.propagateSettings(true).build()))
.build();
clientHandler = new THttp2ClientHandler(ch.eventLoop());
if (sslCtx != null) {
p.addLast(sslCtx.newHandler(p.channel().alloc()));
p.addLast(connHandler);
configureEndOfPipeline(p);
} else {
Http1ClientCodec sourceCodec = new Http1ClientCodec();
HttpClientUpgradeHandler upgradeHandler = new HttpClientUpgradeHandler(
sourceCodec, new Http2ClientUpgradeCodec(connHandler), 65536);
p.addLast(sourceCodec, upgradeHandler, new UpgradeRequestHandler());
}
}
开发者ID:line,项目名称:armeria,代码行数:28,代码来源:THttp2Client.java
示例6: NettyPush
import io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler; //导入依赖的package包/类
public NettyPush(final ChannelHandlerContext ctx, final int streamId, final String authority,
final String scheme) {
this.ctx = ctx;
HttpToHttp2ConnectionHandler handler = ctx.pipeline().get(HttpToHttp2ConnectionHandler.class);
this.encoder = handler.encoder();
this.streamId = streamId;
this.authority = authority;
this.scheme = scheme;
}
开发者ID:jooby-project,项目名称:jooby,代码行数:10,代码来源:NettyPush.java
注:本文中的io.netty.handler.codec.http2.HttpToHttp2ConnectionHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论