Package reactor.netty.quic
Interface QuicStreamInfo
- All Known Subinterfaces:
QuicInbound
,QuicOutbound
public interface QuicStreamInfo
Exposes information for the
QuicStreamChannel
as stream id etc.- Author:
- Violeta Georgieva
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Returnstrue
if the stream was created by this peer.long
streamId()
The id of the stream.Returns theQuicStreamType
of the stream.
-
Method Details
-
isLocalStream
boolean isLocalStream()Returnstrue
if the stream was created by this peer.- Returns:
true
if created by this peer,false
otherwise.
-
streamId
long streamId()The id of the stream.- Returns:
- the stream id of this
QuicStreamChannel
.
-
streamType
QuicStreamType streamType()Returns theQuicStreamType
of the stream.- Returns:
QuicStreamType
of this stream.
-