Home / Function/ shutdownOutputDone() — netty Function Reference

shutdownOutputDone() — netty Function Reference

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

Function java Buffer Search calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  a25c79ab_5c24_9273_a3b7_d1d437bfdff7["shutdownOutputDone()"]
  6ec314cd_b42f_72bd_344b_f54212398142["AbstractEpollStreamChannel"]
  a25c79ab_5c24_9273_a3b7_d1d437bfdff7 -->|defined in| 6ec314cd_b42f_72bd_344b_f54212398142
  5a972d14_e636_b2d4_6755_e61146b73433["ChannelFuture()"]
  5a972d14_e636_b2d4_6755_e61146b73433 -->|calls| a25c79ab_5c24_9273_a3b7_d1d437bfdff7
  a2a1c652_04c3_27b9_b39b_26b5a89f378e["shutdownDone()"]
  a25c79ab_5c24_9273_a3b7_d1d437bfdff7 -->|calls| a2a1c652_04c3_27b9_b39b_26b5a89f378e
  cbeb9409_d71b_bde8_7eec_8a8f96a365ed["operationComplete()"]
  a25c79ab_5c24_9273_a3b7_d1d437bfdff7 -->|calls| cbeb9409_d71b_bde8_7eec_8a8f96a365ed
  style a25c79ab_5c24_9273_a3b7_d1d437bfdff7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollStreamChannel.java lines 642–654

    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-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollStreamChannel.java.
Where is shutdownOutputDone() defined?
shutdownOutputDone() is defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollStreamChannel.java at line 642.
What does shutdownOutputDone() call?
shutdownOutputDone() calls 2 function(s): operationComplete, 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