Home / Function/ QuicheQuicChannel() — netty Function Reference

QuicheQuicChannel() — netty Function Reference

Architecture documentation for the QuicheQuicChannel() function in QuicheQuicChannel.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  8fab4ac4_9bdb_f950_6bda_b507354eead4["QuicheQuicChannel()"]
  3c534d05_bb5b_c991_5e03_7ec94e739cf7["QuicheQuicChannel"]
  8fab4ac4_9bdb_f950_6bda_b507354eead4 -->|defined in| 3c534d05_bb5b_c991_5e03_7ec94e739cf7
  style 8fab4ac4_9bdb_f950_6bda_b507354eead4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java lines 184–212

    private QuicheQuicChannel(Channel parent, boolean server, @Nullable ByteBuffer key, InetSocketAddress local,
                              InetSocketAddress remote, boolean supportsDatagram, ChannelHandler streamHandler,
                              Map.Entry<ChannelOption<?>, Object>[] streamOptionsArray,
                              Map.Entry<AttributeKey<?>, Object>[] streamAttrsArray,
                              @Nullable Consumer<QuicheQuicChannel> freeTask,
                              @Nullable Executor sslTaskExecutor,
                              @Nullable QuicConnectionIdGenerator connectionIdAddressGenerator,
                              @Nullable QuicResetTokenGenerator resetTokenGenerator) {
        super(parent);
        config = new QuicheQuicChannelConfig(this);
        this.freeTask = freeTask;
        this.server = server;
        this.idGenerator = new QuicStreamIdGenerator(server);
        this.connectionIdAddressGenerator = connectionIdAddressGenerator;
        this.resetTokenGenerator = resetTokenGenerator;
        if (key != null) {
            this.sourceConnectionIds.add(key);
        }

        this.supportsDatagram = supportsDatagram;
        this.local = local;
        this.remote = remote;

        this.streamHandler = streamHandler;
        this.streamOptionsArray = streamOptionsArray;
        this.streamAttrsArray = streamAttrsArray;
        timeoutHandler = new TimeoutHandler();
        this.sslTaskExecutor = sslTaskExecutor == null ? ImmediateExecutor.INSTANCE : sslTaskExecutor;
    }

Domain

Subdomains

Frequently Asked Questions

What does QuicheQuicChannel() do?
QuicheQuicChannel() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java.
Where is QuicheQuicChannel() defined?
QuicheQuicChannel() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheQuicChannel.java at line 184.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free