Home / Function/ nextPushId() — netty Function Reference

nextPushId() — netty Function Reference

Architecture documentation for the nextPushId() function in Http3ServerPushStreamManager.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  56e09850_1361_7bcc_3c80_1e0bbbb95af4["nextPushId()"]
  603de3da_f437_97ed_be00_9d4c1ccef895["Http3ServerPushStreamManager"]
  56e09850_1361_7bcc_3c80_1e0bbbb95af4 -->|defined in| 603de3da_f437_97ed_be00_9d4c1ccef895
  76b16655_6205_147d_379d_2203d26c935a["reserveNextPushId()"]
  76b16655_6205_147d_379d_2203d26c935a -->|calls| 56e09850_1361_7bcc_3c80_1e0bbbb95af4
  style 56e09850_1361_7bcc_3c80_1e0bbbb95af4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ServerPushStreamManager.java lines 200–204

    private long nextPushId() {
        final long pushId = nextIdUpdater.getAndIncrement(this);
        pushStreams.put(pushId, PUSH_ID_GENERATED);
        return pushId;
    }

Domain

Subdomains

Frequently Asked Questions

What does nextPushId() do?
nextPushId() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ServerPushStreamManager.java.
Where is nextPushId() defined?
nextPushId() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ServerPushStreamManager.java at line 200.
What calls nextPushId()?
nextPushId() is called by 1 function(s): reserveNextPushId.

Analyze Your Own Codebase

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

Try Supermodel Free