Home / Function/ channelInactive() — netty Function Reference

channelInactive() — netty Function Reference

Architecture documentation for the channelInactive() function in SpdySessionHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  72436298_62de_b647_5c7a_939caa744c7e["channelInactive()"]
  1fb79984_fd8e_cecc_3934_20ed3529f561["SpdySessionHandler"]
  72436298_62de_b647_5c7a_939caa744c7e -->|defined in| 1fb79984_fd8e_cecc_3934_20ed3529f561
  9259efc1_c40e_efc0_2d75_ce800778ec12["removeStream()"]
  72436298_62de_b647_5c7a_939caa744c7e -->|calls| 9259efc1_c40e_efc0_2d75_ce800778ec12
  style 72436298_62de_b647_5c7a_939caa744c7e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java lines 413–419

    @Override
    public void channelInactive(ChannelHandlerContext ctx) throws Exception {
        for (Integer streamId: spdySession.activeStreams().keySet()) {
            removeStream(streamId, ctx.newSucceededFuture());
        }
        ctx.fireChannelInactive();
    }

Domain

Subdomains

Frequently Asked Questions

What does channelInactive() do?
channelInactive() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java.
Where is channelInactive() defined?
channelInactive() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySessionHandler.java at line 413.
What does channelInactive() call?
channelInactive() calls 1 function(s): removeStream.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free