Home / Function/ shutdownOutputDone() — netty Function Reference

shutdownOutputDone() — netty Function Reference

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

Function java Buffer Telemetry calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  6a9d5e46_a01c_522f_5c3b_4688247e1f1d["shutdownOutputDone()"]
  e0084bc2_202c_2cf9_b167_f5ee8ec96f9b["AbstractIoUringStreamChannel"]
  6a9d5e46_a01c_522f_5c3b_4688247e1f1d -->|defined in| e0084bc2_202c_2cf9_b167_f5ee8ec96f9b
  8da473da_eef9_89a8_c578_c4589756d46d["ChannelFuture()"]
  8da473da_eef9_89a8_c578_c4589756d46d -->|calls| 6a9d5e46_a01c_522f_5c3b_4688247e1f1d
  a885e83c_6a8f_6223_32e4_813fddbf1b00["shutdownDone()"]
  6a9d5e46_a01c_522f_5c3b_4688247e1f1d -->|calls| a885e83c_6a8f_6223_32e4_813fddbf1b00
  style 6a9d5e46_a01c_522f_5c3b_4688247e1f1d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringStreamChannel.java lines 164–176

    private void shutdownOutputDone(final ChannelFuture shutdownOutputFuture, final ChannelPromise promise) {
        ChannelFuture shutdownInputFuture = shutdownInput();
        if (shutdownInputFuture.isDone()) {
            shutdownDone(shutdownOutputFuture, shutdownInputFuture, promise);
        } else {
            shutdownInputFuture.addListener(new ChannelFutureListener() {
                @Override
                public void operationComplete(ChannelFuture shutdownInputFuture) throws Exception {
                    shutdownDone(shutdownOutputFuture, shutdownInputFuture, promise);
                }
            });
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does shutdownOutputDone() do?
shutdownOutputDone() is a function in the netty codebase, defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringStreamChannel.java.
Where is shutdownOutputDone() defined?
shutdownOutputDone() is defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringStreamChannel.java at line 164.
What does shutdownOutputDone() call?
shutdownOutputDone() calls 1 function(s): shutdownDone.
What calls shutdownOutputDone()?
shutdownOutputDone() is called by 1 function(s): ChannelFuture.

Analyze Your Own Codebase

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

Try Supermodel Free