Package io.netty.handler.codec.http2
Interface Http2FrameStream
-
public interface Http2FrameStreamA 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 intid()Returns the stream identifier.Http2Stream.Statestate()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.
-
-