removeStream() — netty Function Reference
Architecture documentation for the removeStream() function in SpdySessionHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9259efc1_c40e_efc0_2d75_ce800778ec12["removeStream()"] 1fb79984_fd8e_cecc_3934_20ed3529f561["SpdySessionHandler"] 9259efc1_c40e_efc0_2d75_ce800778ec12 -->|defined in| 1fb79984_fd8e_cecc_3934_20ed3529f561 d2ae1d21_cf0c_c4d0_e046_efc746940057["channelRead()"] d2ae1d21_cf0c_c4d0_e046_efc746940057 -->|calls| 9259efc1_c40e_efc0_2d75_ce800778ec12 72436298_62de_b647_5c7a_939caa744c7e["channelInactive()"] 72436298_62de_b647_5c7a_939caa744c7e -->|calls| 9259efc1_c40e_efc0_2d75_ce800778ec12 ec4cd550_8624_c011_7fc2_e23fed71bcc1["handleOutboundMessage()"] ec4cd550_8624_c011_7fc2_e23fed71bcc1 -->|calls| 9259efc1_c40e_efc0_2d75_ce800778ec12 523c4082_b738_2187_2ebe_17c60a486843["issueStreamError()"] 523c4082_b738_2187_2ebe_17c60a486843 -->|calls| 9259efc1_c40e_efc0_2d75_ce800778ec12 05b1923a_38e1_1014_132a_6e3154a42d84["isRemoteInitiatedId()"] 9259efc1_c40e_efc0_2d75_ce800778ec12 -->|calls| 05b1923a_38e1_1014_132a_6e3154a42d84 style 9259efc1_c40e_efc0_2d75_ce800778ec12 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java lines 736–742
private void removeStream(int streamId, ChannelFuture future) {
spdySession.removeStream(streamId, STREAM_CLOSED, isRemoteInitiatedId(streamId));
if (closeSessionFutureListener != null && spdySession.noActiveStreams()) {
future.addListener(closeSessionFutureListener);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does removeStream() do?
removeStream() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java.
Where is removeStream() defined?
removeStream() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java at line 736.
What does removeStream() call?
removeStream() calls 1 function(s): isRemoteInitiatedId.
What calls removeStream()?
removeStream() is called by 4 function(s): channelInactive, channelRead, handleOutboundMessage, issueStreamError.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free