-
@UnstableApi public interface Http2FrameStream
A single stream within an HTTP/2 connection. To be used with theHttp2FrameCodec
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
id()
Returns the stream identifier.Http2Stream.State
state()
Returns the state of this stream.
-
-
-
Method Detail
-
id
int id()
Returns the stream identifier.Use
Http2CodecUtil.isStreamIdValid(int)
to check if the stream has already been assigned an identifier.
-
state
Http2Stream.State state()
Returns the state of this stream.
-
-