@UnstableApi
public interface Http2DataWriter
Modifier and Type | Method and Description |
---|---|
ChannelFuture |
writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream, ChannelPromise promise)
将
DATA 帧写入远程端点。
|
ChannelFuture writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream, ChannelPromise promise)
DATA
帧写入远程端点。
这将导致一个或多个帧被写入上下文。
ctx
- 用于书写的上下文。
streamId
- 要发送帧的流。
data
- 帧的有效载荷。
这将通过这种方法发布。
padding
- 应添加的其他字节以掩盖真实的内容大小。
必须介于0和256(含)之间。
一个1字节的填充被编码为值为0的填充长度字段。一个256字节的填充被编码为填充长度字段,值255和填充字节255被附加到帧的末尾。
endStream
- 指示这是否是流的最后一个帧。
promise
- 写作的承诺。
Copyright © 2008–2018 The Netty Project. All rights reserved.