operationComplete() — netty Function Reference
Architecture documentation for the operationComplete() function in Http2ConnectionHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f04de241_cdc7_ec36_6253_6c13e215b0da["operationComplete()"] 17901c52_dc16_288a_d386_470ce06cce7e["ClosingChannelFutureListener"] f04de241_cdc7_ec36_6253_6c13e215b0da -->|defined in| 17901c52_dc16_288a_d386_470ce06cce7e 401e2e76_994c_3bf5_9e43_754e2ba61459["doGracefulShutdown()"] 401e2e76_994c_3bf5_9e43_754e2ba61459 -->|calls| f04de241_cdc7_ec36_6253_6c13e215b0da 29eb3608_955d_2e37_d37c_1caeb939aef1["checkCloseConnection()"] 29eb3608_955d_2e37_d37c_1caeb939aef1 -->|calls| f04de241_cdc7_ec36_6253_6c13e215b0da 60a1ffc0_2a6c_10ae_8455_5c9e7c6be857["doClose()"] 60a1ffc0_2a6c_10ae_8455_5c9e7c6be857 -->|calls| f04de241_cdc7_ec36_6253_6c13e215b0da 60a1ffc0_2a6c_10ae_8455_5c9e7c6be857["doClose()"] f04de241_cdc7_ec36_6253_6c13e215b0da -->|calls| 60a1ffc0_2a6c_10ae_8455_5c9e7c6be857 style f04de241_cdc7_ec36_6253_6c13e215b0da fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java lines 970–976
@Override
public void operationComplete(ChannelFuture sentGoAwayFuture) {
if (timeoutTask != null) {
timeoutTask.cancel(false);
}
doClose();
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does operationComplete() do?
operationComplete() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java.
Where is operationComplete() defined?
operationComplete() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ConnectionHandler.java at line 970.
What does operationComplete() call?
operationComplete() calls 1 function(s): doClose.
What calls operationComplete()?
operationComplete() is called by 3 function(s): checkCloseConnection, doClose, doGracefulShutdown.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free