Package io.netty.handler.codec.http3
Interface Http3PushPromiseFrame
-
- All Superinterfaces:
Http3Frame
,Http3RequestStreamFrame
- All Known Implementing Classes:
DefaultHttp3PushPromiseFrame
public interface Http3PushPromiseFrame extends Http3RequestStreamFrame
See PUSH_PROMISE.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Http3Headers
headers()
Returns the carried headers.long
id()
Returns the push id.default long
type()
The type of the frame.
-
-
-
Method Detail
-
type
default long type()
Description copied from interface:Http3Frame
The type of the frame.- Specified by:
type
in interfaceHttp3Frame
- Returns:
- the type.
-
id
long id()
Returns the push id.- Returns:
- the id.
-
headers
Http3Headers headers()
Returns the carried headers.- Returns:
- the headers.
-
-