Uses of Class
io.netty.handler.codec.http2.Http2Flags
Packages that use Http2Flags
-
Uses of Http2Flags in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return Http2FlagsModifier and TypeMethodDescriptionHttp2Flags.ack(boolean ack) Sets theHttp2Flags.ACKflag.Http2Flags.endOfHeaders(boolean endOfHeaders) Sets theHttp2Flags.END_HEADERSflag.Http2Flags.endOfStream(boolean endOfStream) Sets theHttp2Flags.END_STREAMflag.DefaultHttp2UnknownFrame.flags()Http2UnknownFrame.flags()Http2Flags.paddingPresent(boolean paddingPresent) Sets theHttp2Flags.PADDEDflag.Http2Flags.priorityPresent(boolean priorityPresent) Sets theHttp2Flags.PRIORITYflag.Http2Flags.setFlag(boolean on, short mask) Generic method to set any flag.Methods in io.netty.handler.codec.http2 with parameters of type Http2FlagsModifier and TypeMethodDescriptionvoidHttp2FrameLogger.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) DecoratingHttp2FrameWriter.writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise) DefaultHttp2ConnectionEncoder.writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise) DefaultHttp2FrameWriter.writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise) Http2ConnectionEncoder.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.Http2FrameWriter.writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise) Generic write method for any HTTP/2 frame.Http2OutboundFrameLogger.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 Http2FlagsModifierConstructorDescriptionDefaultHttp2UnknownFrame(byte frameType, Http2Flags flags) DefaultHttp2UnknownFrame(byte frameType, Http2Flags flags, ByteBuf data)