Home / Function/ shutdownInput0() — netty Function Reference

shutdownInput0() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  59bcb81f_d039_138a_da51_53f0d3d41aef["shutdownInput0()"]
  d154050d_32bb_fde7_fa64_5c82411c48d6["AbstractKQueueStreamChannel"]
  59bcb81f_d039_138a_da51_53f0d3d41aef -->|defined in| d154050d_32bb_fde7_fa64_5c82411c48d6
  dc045942_7616_6a71_bfc9_63f1ce9b36e9["ChannelFuture()"]
  dc045942_7616_6a71_bfc9_63f1ce9b36e9 -->|calls| 59bcb81f_d039_138a_da51_53f0d3d41aef
  style 59bcb81f_d039_138a_da51_53f0d3d41aef fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/AbstractKQueueStreamChannel.java lines 442–450

    private void shutdownInput0(ChannelPromise promise) {
        try {
            socket.shutdown(true, false);
        } catch (Throwable cause) {
            promise.setFailure(cause);
            return;
        }
        promise.setSuccess();
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does shutdownInput0() do?
shutdownInput0() is a function in the netty codebase, defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/AbstractKQueueStreamChannel.java.
Where is shutdownInput0() defined?
shutdownInput0() is defined in transport-classes-kqueue/src/main/java/io/netty/channel/kqueue/AbstractKQueueStreamChannel.java at line 442.
What calls shutdownInput0()?
shutdownInput0() 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