Uses of Interface
io.netty.handler.codec.quic.FlushStrategy
-
Packages that use FlushStrategy Package Description io.netty.handler.codec.quic QUIC implementation -
-
Uses of FlushStrategy in io.netty.handler.codec.quic
Fields in io.netty.handler.codec.quic declared as FlushStrategy Modifier and Type Field Description static FlushStrategy
FlushStrategy. DEFAULT
DefaultFlushStrategy
implementation.Methods in io.netty.handler.codec.quic that return FlushStrategy Modifier and Type Method Description static FlushStrategy
FlushStrategy. afterNumBytes(int bytes)
Implementation that flushes after a number of bytes.static FlushStrategy
FlushStrategy. afterNumPackets(int packets)
Implementation that flushes after a number of packets.Methods in io.netty.handler.codec.quic with parameters of type FlushStrategy Modifier and Type Method Description B
QuicCodecBuilder. flushStrategy(FlushStrategy flushStrategy)
Sets theFlushStrategy
that will be used to detect when an automatic flush should happen.
-