Uses of Interface
io.netty.handler.codec.quic.QuicConnectionIdGenerator
-
Packages that use QuicConnectionIdGenerator Package Description io.netty.handler.codec.quic QUIC implementation -
-
Uses of QuicConnectionIdGenerator in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic that return QuicConnectionIdGenerator Modifier and Type Method Description protected QuicConnectionIdGenerator
QuicCodecDispatcher. newIdGenerator(int idx)
Returns aQuicConnectionIdGenerator
that will encode the given index into all the ids that it produces.static QuicConnectionIdGenerator
QuicConnectionIdGenerator. randomGenerator()
Return aQuicConnectionIdGenerator
which randomly generates new connection ids.static QuicConnectionIdGenerator
QuicConnectionIdGenerator. signGenerator()
Return aQuicConnectionIdGenerator
which generates new connection ids by signing the given input.Methods in io.netty.handler.codec.quic with parameters of type QuicConnectionIdGenerator Modifier and Type Method Description QuicServerCodecBuilder
QuicServerCodecBuilder. connectionIdAddressGenerator(QuicConnectionIdGenerator connectionIdAddressGenerator)
Sets theQuicConnectionIdGenerator
to use.protected abstract void
QuicCodecDispatcher. initChannel(Channel channel, int localConnectionIdLength, QuicConnectionIdGenerator idGenerator)
Init theChannel
and add all the neededChannelHandler
to the pipeline.
-