closeOutboundBufferForShutdown() — netty Function Reference
Architecture documentation for the closeOutboundBufferForShutdown() function in AbstractChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 021f3296_6641_a119_4d87_0ee097950fa6["closeOutboundBufferForShutdown()"] 330d05c9_85ca_2e57_92f5_e996fb442b81["AbstractUnsafe"] 021f3296_6641_a119_4d87_0ee097950fa6 -->|defined in| 330d05c9_85ca_2e57_92f5_e996fb442b81 e95fc83e_066e_406e_f5b1_0ff28fed8f37["shutdownOutput()"] e95fc83e_066e_406e_f5b1_0ff28fed8f37 -->|calls| 021f3296_6641_a119_4d87_0ee097950fa6 3247fe36_e8dd_2a94_aca8_58f72f5210e8["close()"] 021f3296_6641_a119_4d87_0ee097950fa6 -->|calls| 3247fe36_e8dd_2a94_aca8_58f72f5210e8 style 021f3296_6641_a119_4d87_0ee097950fa6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/AbstractChannel.java lines 538–543
private void closeOutboundBufferForShutdown(
ChannelPipeline pipeline, ChannelOutboundBuffer buffer, Throwable cause) {
buffer.failFlushed(cause, false);
buffer.close(cause, true);
pipeline.fireUserEventTriggered(ChannelOutputShutdownEvent.INSTANCE);
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does closeOutboundBufferForShutdown() do?
closeOutboundBufferForShutdown() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/AbstractChannel.java.
Where is closeOutboundBufferForShutdown() defined?
closeOutboundBufferForShutdown() is defined in transport/src/main/java/io/netty/channel/AbstractChannel.java at line 538.
What does closeOutboundBufferForShutdown() call?
closeOutboundBufferForShutdown() calls 1 function(s): close.
What calls closeOutboundBufferForShutdown()?
closeOutboundBufferForShutdown() is called by 1 function(s): shutdownOutput.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free