interface Deno.QuicListener
extends AsyncIterable<QuicIncoming>
unstable
Specialized listener that accepts QUIC connections.
Properties #
#endpoint: QuicEndpoint readonly
The endpoint for this listener.
Methods #
#incoming(): Promise<QuicIncoming> Waits for and resolves to the next incoming connection.
#[[Symbol.asyncIterator]](): AsyncIterableIterator<QuicIncoming>