Uses of Class
io.netty.handler.codec.http2.Http2Flags
-
Packages that use Http2Flags Package Description io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of Http2Flags in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return Http2Flags Modifier and Type Method Description Http2FlagsHttp2Flags. ack(boolean ack)Sets theACKflag.Http2FlagsHttp2Flags. endOfHeaders(boolean endOfHeaders)Sets theEND_HEADERSflag.Http2FlagsHttp2Flags. endOfStream(boolean endOfStream)Sets theEND_STREAMflag.Http2FlagsDefaultHttp2UnknownFrame. flags()Http2FlagsHttp2UnknownFrame. flags()Http2FlagsHttp2Flags. paddingPresent(boolean paddingPresent)Sets thePADDEDflag.Http2FlagsHttp2Flags. priorityPresent(boolean priorityPresent)Sets thePRIORITYflag.Http2FlagsHttp2Flags. setFlag(boolean on, short mask)Generic method to set any flag.Methods in io.netty.handler.codec.http2 with parameters of type Http2Flags Modifier and Type Method Description voidHttp2FrameLogger. logUnknownFrame(Http2FrameLogger.Direction direction, ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf data)protected Http2StreamFrameHttp2FrameCodec. newHttp2UnknownFrame(byte frameType, int streamId, Http2Flags flags, ByteBuf payload)Create a Http2UnknownFrame.voidHttp2EventAdapter. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)voidHttp2FrameAdapter. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)voidHttp2FrameListener. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)Handler for a frame not defined by the HTTP/2 spec.voidHttp2FrameListenerDecorator. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)ChannelFutureDecoratingHttp2FrameWriter. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)ChannelFutureDefaultHttp2ConnectionEncoder. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)ChannelFutureDefaultHttp2FrameWriter. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)ChannelFutureHttp2ConnectionEncoder. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)Writes the given data to the internalHttp2FrameWriterwithout performing any state checks on the connection/stream.ChannelFutureHttp2FrameWriter. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)Generic write method for any HTTP/2 frame.ChannelFutureHttp2OutboundFrameLogger. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)static voidHttp2CodecUtil. writeFrameHeader(ByteBuf out, int payloadLength, byte type, Http2Flags flags, int streamId)Writes an HTTP/2 frame header to the output buffer.Constructors in io.netty.handler.codec.http2 with parameters of type Http2Flags Constructor Description DefaultHttp2UnknownFrame(byte frameType, Http2Flags flags)DefaultHttp2UnknownFrame(byte frameType, Http2Flags flags, ByteBuf data)
-