public class DefaultHttp2ConnectionEncoder extends Object implements Http2ConnectionEncoder
Http2ConnectionEncoder.| Modifier and Type | Class and Description |
|---|---|
static class |
DefaultHttp2ConnectionEncoder.Builder
Builder for new instances of
DefaultHttp2ConnectionEncoder. |
class |
DefaultHttp2ConnectionEncoder.FlowControlledBase
Common base type for payloads to deliver via flow-control.
|
Http2FrameWriter.Configuration| Modifier | Constructor and Description |
|---|---|
protected |
DefaultHttp2ConnectionEncoder(DefaultHttp2ConnectionEncoder.Builder builder) |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
Closes this writer and frees any allocated resources.
|
Http2FrameWriter.Configuration |
configuration()
Get the configuration related elements for this
Http2FrameWriter |
Http2Connection |
connection()
Provides direct access to the underlying connection.
|
Http2RemoteFlowController |
flowController()
Provides the remote flow controller for managing outbound traffic.
|
Http2FrameWriter |
frameWriter()
Provides direct access to the underlying frame writer object.
|
static DefaultHttp2ConnectionEncoder.Builder |
newBuilder() |
Http2Settings |
pollSentSettings()
Gets the local settings on the top of the queue that has been sent but not ACKed.
|
void |
remoteSettings(Http2Settings settings)
Sets the settings for the remote endpoint of the HTTP/2 connection.
|
ChannelFuture |
writeData(ChannelHandlerContext ctx,
int streamId,
ByteBuf data,
int padding,
boolean endOfStream,
ChannelPromise promise)
Writes a
DATA frame to the remote endpoint. |
ChannelFuture |
writeFrame(ChannelHandlerContext ctx,
byte frameType,
int streamId,
Http2Flags flags,
ByteBuf payload,
ChannelPromise promise)
Writes the given data to the internal
Http2FrameWriter without performing any
state checks on the connection/stream. |
ChannelFuture |
writeGoAway(ChannelHandlerContext ctx,
int lastStreamId,
long errorCode,
ByteBuf debugData,
ChannelPromise promise)
Writes a GO_AWAY frame to the remote endpoint.
|
ChannelFuture |
writeHeaders(ChannelHandlerContext ctx,
int streamId,
Http2Headers headers,
int padding,
boolean endStream,
ChannelPromise promise)
Writes a HEADERS frame to the remote endpoint.
|
ChannelFuture |
writeHeaders(ChannelHandlerContext ctx,
int streamId,
Http2Headers headers,
int streamDependency,
short weight,
boolean exclusive,
int padding,
boolean endOfStream,
ChannelPromise promise)
Writes a HEADERS frame with priority specified to the remote endpoint.
|
ChannelFuture |
writePing(ChannelHandlerContext ctx,
boolean ack,
ByteBuf data,
ChannelPromise promise)
Writes a PING frame to the remote endpoint.
|
ChannelFuture |
writePriority(ChannelHandlerContext ctx,
int streamId,
int streamDependency,
short weight,
boolean exclusive,
ChannelPromise promise)
Writes a PRIORITY frame to the remote endpoint.
|
ChannelFuture |
writePushPromise(ChannelHandlerContext ctx,
int streamId,
int promisedStreamId,
Http2Headers headers,
int padding,
ChannelPromise promise)
Writes a PUSH_PROMISE frame to the remote endpoint.
|
ChannelFuture |
writeRstStream(ChannelHandlerContext ctx,
int streamId,
long errorCode,
ChannelPromise promise)
Writes a RST_STREAM frame to the remote endpoint.
|
ChannelFuture |
writeRstStream(ChannelHandlerContext ctx,
int streamId,
long errorCode,
ChannelPromise promise,
boolean writeIfNoStream)
Writes a RST_STREAM frame to the remote endpoint.
|
ChannelFuture |
writeSettings(ChannelHandlerContext ctx,
Http2Settings settings,
ChannelPromise promise)
Writes a SETTINGS frame to the remote endpoint.
|
ChannelFuture |
writeSettingsAck(ChannelHandlerContext ctx,
ChannelPromise promise)
Writes a SETTINGS acknowledgment to the remote endpoint.
|
ChannelFuture |
writeWindowUpdate(ChannelHandlerContext ctx,
int streamId,
int windowSizeIncrement,
ChannelPromise promise)
Writes a WINDOW_UPDATE frame to the remote endpoint.
|
protected DefaultHttp2ConnectionEncoder(DefaultHttp2ConnectionEncoder.Builder builder)
public static DefaultHttp2ConnectionEncoder.Builder newBuilder()
public Http2FrameWriter frameWriter()
Http2ConnectionEncoderframeWriter in interface Http2ConnectionEncoderpublic Http2Connection connection()
Http2ConnectionEncoderconnection in interface Http2ConnectionEncoderpublic final Http2RemoteFlowController flowController()
Http2ConnectionEncoderflowController in interface Http2ConnectionEncoderpublic void remoteSettings(Http2Settings settings) throws Http2Exception
Http2ConnectionEncoderremoteSettings in interface Http2ConnectionEncoderHttp2Exceptionpublic ChannelFuture writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream, ChannelPromise promise)
Http2DataWriterDATA frame to the remote endpoint.writeData in interface Http2DataWriterctx - the context to use for writing.streamId - the stream for which to send the frame.data - the payload of the frame. This will be released by this method.padding - the amount of padding to be added to the end of the frameendOfStream - indicates if this is the last frame to be sent for the stream.promise - the promise for the write.public ChannelFuture writeHeaders(ChannelHandlerContext ctx, int streamId, Http2Headers headers, int padding, boolean endStream, ChannelPromise promise)
Http2FrameWriterwriteHeaders in interface Http2FrameWriterctx - the context to use for writing.streamId - the stream for which to send the frame.headers - the headers to be sent.padding - the amount of padding to be added to the end of the frameendStream - indicates if this is the last frame to be sent for the stream.promise - the promise for the write.public ChannelFuture writeHeaders(ChannelHandlerContext ctx, int streamId, Http2Headers headers, int streamDependency, short weight, boolean exclusive, int padding, boolean endOfStream, ChannelPromise promise)
Http2FrameWriterwriteHeaders in interface Http2FrameWriterctx - the context to use for writing.streamId - the stream for which to send the frame.headers - the headers to be sent.streamDependency - the stream on which this stream should depend, or 0 if it should
depend on the connection.weight - the weight for this stream.exclusive - whether this stream should be the exclusive dependant of its parent.padding - the amount of padding to be added to the end of the frameendOfStream - indicates if this is the last frame to be sent for the stream.promise - the promise for the write.public ChannelFuture writePriority(ChannelHandlerContext ctx, int streamId, int streamDependency, short weight, boolean exclusive, ChannelPromise promise)
Http2FrameWriterwritePriority in interface Http2FrameWriterctx - the context to use for writing.streamId - the stream for which to send the frame.streamDependency - the stream on which this stream should depend, or 0 if it should
depend on the connection.weight - the weight for this stream.exclusive - whether this stream should be the exclusive dependant of its parent.promise - the promise for the write.public ChannelFuture writeRstStream(ChannelHandlerContext ctx, int streamId, long errorCode, ChannelPromise promise)
Http2FrameWriterwriteRstStream in interface Http2FrameWriterctx - the context to use for writing.streamId - the stream for which to send the frame.errorCode - the error code indicating the nature of the failure.promise - the promise for the write.public ChannelFuture writeRstStream(ChannelHandlerContext ctx, int streamId, long errorCode, ChannelPromise promise, boolean writeIfNoStream)
ctx - the context to use for writing.streamId - the stream for which to send the frame.errorCode - the error code indicating the nature of the failure.promise - the promise for the write.writeIfNoStream - true will force a write of a RST_STREAM even if the stream object does not exist locally.false will only send a RST_STREAM only if the stream is known about locallypublic ChannelFuture writeSettings(ChannelHandlerContext ctx, Http2Settings settings, ChannelPromise promise)
Http2FrameWriterwriteSettings in interface Http2FrameWriterctx - the context to use for writing.settings - the settings to be sent.promise - the promise for the write.public ChannelFuture writeSettingsAck(ChannelHandlerContext ctx, ChannelPromise promise)
Http2FrameWriterwriteSettingsAck in interface Http2FrameWriterctx - the context to use for writing.promise - the promise for the write.public ChannelFuture writePing(ChannelHandlerContext ctx, boolean ack, ByteBuf data, ChannelPromise promise)
Http2FrameWriterwritePing in interface Http2FrameWriterctx - the context to use for writing.ack - indicates whether this is an ack of a PING frame previously received from the
remote endpoint.data - the payload of the frame. This will be released by this method.promise - the promise for the write.public ChannelFuture writePushPromise(ChannelHandlerContext ctx, int streamId, int promisedStreamId, Http2Headers headers, int padding, ChannelPromise promise)
Http2FrameWriterwritePushPromise in interface Http2FrameWriterctx - the context to use for writing.streamId - the stream for which to send the frame.promisedStreamId - the ID of the promised stream.headers - the headers to be sent.padding - the amount of padding to be added to the end of the framepromise - the promise for the write.public ChannelFuture writeGoAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)
Http2FrameWriterwriteGoAway in interface Http2FrameWriterctx - the context to use for writing.lastStreamId - the last known stream of this endpoint.errorCode - the error code, if the connection was abnormally terminated.debugData - application-defined debug data. This will be released by this method.promise - the promise for the write.public ChannelFuture writeWindowUpdate(ChannelHandlerContext ctx, int streamId, int windowSizeIncrement, ChannelPromise promise)
Http2FrameWriterwriteWindowUpdate in interface Http2FrameWriterctx - the context to use for writing.streamId - the stream for which to send the frame.windowSizeIncrement - the number of bytes by which the local inbound flow control window
is increasing.promise - the promise for the write.public ChannelFuture writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)
Http2ConnectionEncoderHttp2FrameWriter without performing any
state checks on the connection/stream.writeFrame in interface Http2ConnectionEncoderwriteFrame in interface Http2FrameWriterctx - the context to use for writing.frameType - the frame type identifier.streamId - the stream for which to send the frame.flags - the flags to write for this frame.payload - the payload to write for this frame. This will be released by this method.promise - the promise for the write.public void close()
Http2FrameWriterclose in interface Http2FrameWriterclose in interface Closeableclose in interface AutoCloseablepublic Http2Settings pollSentSettings()
Http2ConnectionEncodernull.pollSentSettings in interface Http2ConnectionEncoderpublic Http2FrameWriter.Configuration configuration()
Http2FrameWriterHttp2FrameWriterconfiguration in interface Http2FrameWriterCopyright © 2008–2015 The Netty Project. All rights reserved.