Package io.netty.handler.codec.quic
Class QuicChannelOption<T>
- java.lang.Object
-
- io.netty.util.AbstractConstant<ChannelOption<T>>
-
- io.netty.channel.ChannelOption<T>
-
- io.netty.handler.codec.quic.QuicChannelOption<T>
-
- All Implemented Interfaces:
Constant<ChannelOption<T>>
,java.lang.Comparable<ChannelOption<T>>
public final class QuicChannelOption<T> extends ChannelOption<T>
ChannelOption
s specific to QUIC.
-
-
Field Summary
Fields Modifier and Type Field Description static ChannelOption<QLogConfiguration>
QLOG
Enable qlog for aQuicChannel
.static ChannelOption<java.lang.Boolean>
READ_FRAMES
If set totrue
theQuicStreamChannel
will readQuicStreamFrame
s and fire it through the pipeline, iffalse
it will readByteBuf
and translate the FIN flag to events.static ChannelOption<SegmentedDatagramPacketAllocator>
SEGMENTED_DATAGRAM_PACKET_ALLOCATOR
Use GSO for QUIC packets if possible.-
Fields inherited from class io.netty.channel.ChannelOption
ALLOCATOR, ALLOW_HALF_CLOSURE, AUTO_CLOSE, AUTO_READ, CONNECT_TIMEOUT_MILLIS, DATAGRAM_CHANNEL_ACTIVE_ON_REGISTRATION, IP_MULTICAST_ADDR, IP_MULTICAST_IF, IP_MULTICAST_LOOP_DISABLED, IP_MULTICAST_TTL, IP_TOS, MAX_MESSAGES_PER_READ, MAX_MESSAGES_PER_WRITE, MESSAGE_SIZE_ESTIMATOR, RCVBUF_ALLOCATOR, RECVBUF_ALLOCATOR, SINGLE_EVENTEXECUTOR_PER_GROUP, SO_BACKLOG, SO_BROADCAST, SO_KEEPALIVE, SO_LINGER, SO_RCVBUF, SO_REUSEADDR, SO_SNDBUF, SO_TIMEOUT, TCP_FASTOPEN, TCP_FASTOPEN_CONNECT, TCP_NODELAY, WRITE_BUFFER_HIGH_WATER_MARK, WRITE_BUFFER_LOW_WATER_MARK, WRITE_BUFFER_WATER_MARK, WRITE_SPIN_COUNT
-
-
Method Summary
-
Methods inherited from class io.netty.channel.ChannelOption
exists, newInstance, validate, valueOf, valueOf
-
-
-
-
Field Detail
-
READ_FRAMES
public static final ChannelOption<java.lang.Boolean> READ_FRAMES
If set totrue
theQuicStreamChannel
will readQuicStreamFrame
s and fire it through the pipeline, iffalse
it will readByteBuf
and translate the FIN flag to events.
-
QLOG
public static final ChannelOption<QLogConfiguration> QLOG
Enable qlog for aQuicChannel
.
-
SEGMENTED_DATAGRAM_PACKET_ALLOCATOR
public static final ChannelOption<SegmentedDatagramPacketAllocator> SEGMENTED_DATAGRAM_PACKET_ALLOCATOR
Use GSO for QUIC packets if possible.
-
-