Home / Function/ shutdownInput0() — netty Function Reference

shutdownInput0() — netty Function Reference

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

Function java Buffer Search called by 1

Entity Profile

Dependency Diagram

graph TD
  99360243_5023_89c7_0532_862c3f09f581["shutdownInput0()"]
  c458e276_eaf3_4567_04e0_b5864fe60240["OioSocketChannel"]
  99360243_5023_89c7_0532_862c3f09f581 -->|defined in| c458e276_eaf3_4567_04e0_b5864fe60240
  429f5201_a59d_0cfa_6e70_d3ad852141c1["ChannelFuture()"]
  429f5201_a59d_0cfa_6e70_d3ad852141c1 -->|calls| 99360243_5023_89c7_0532_862c3f09f581
  style 99360243_5023_89c7_0532_862c3f09f581 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java lines 212–219

    private void shutdownInput0(ChannelPromise promise) {
        try {
            socket.shutdownInput();
            promise.setSuccess();
        } catch (Throwable t) {
            promise.setFailure(t);
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does shutdownInput0() do?
shutdownInput0() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java.
Where is shutdownInput0() defined?
shutdownInput0() is defined in transport/src/main/java/io/netty/channel/socket/oio/OioSocketChannel.java at line 212.
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