reserveNextPushId() — netty Function Reference
Architecture documentation for the reserveNextPushId() function in Http3ServerPushStreamManager.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 76b16655_6205_147d_379d_2203d26c935a["reserveNextPushId()"] 603de3da_f437_97ed_be00_9d4c1ccef895["Http3ServerPushStreamManager"] 76b16655_6205_147d_379d_2203d26c935a -->|defined in| 603de3da_f437_97ed_be00_9d4c1ccef895 5898268b_75de_f5d7_482e_c48e32ec86de["isPushAllowed()"] 76b16655_6205_147d_379d_2203d26c935a -->|calls| 5898268b_75de_f5d7_482e_c48e32ec86de 56e09850_1361_7bcc_3c80_1e0bbbb95af4["nextPushId()"] 76b16655_6205_147d_379d_2203d26c935a -->|calls| 56e09850_1361_7bcc_3c80_1e0bbbb95af4 style 76b16655_6205_147d_379d_2203d26c935a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ServerPushStreamManager.java lines 126–132
public long reserveNextPushId() {
final long maxPushId = maxPushIdReceived(channel);
if (isPushAllowed(maxPushId)) {
return nextPushId();
}
throw new IllegalStateException("MAX allowed push ID: " + maxPushId + ", next push ID: " + nextId);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does reserveNextPushId() do?
reserveNextPushId() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ServerPushStreamManager.java.
Where is reserveNextPushId() defined?
reserveNextPushId() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/Http3ServerPushStreamManager.java at line 126.
What does reserveNextPushId() call?
reserveNextPushId() calls 2 function(s): isPushAllowed, nextPushId.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free