mayHaveCreatedStream() — netty Function Reference
Architecture documentation for the mayHaveCreatedStream() function in DefaultHttp2Connection.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD dd504b42_7fd8_c9e4_7833_8863cdffb657["mayHaveCreatedStream()"] 4fff0ad9_a79c_4bdb_3e93_54ee4440ca84["DefaultEndpoint"] dd504b42_7fd8_c9e4_7833_8863cdffb657 -->|defined in| 4fff0ad9_a79c_4bdb_3e93_54ee4440ca84 2738ebb0_9cab_ba0b_f25e_11e52ef556a5["streamMayHaveExisted()"] 2738ebb0_9cab_ba0b_f25e_11e52ef556a5 -->|calls| dd504b42_7fd8_c9e4_7833_8863cdffb657 36dea6ba_23b3_cc56_baf0_358018c65dc1["isValidStreamId()"] dd504b42_7fd8_c9e4_7833_8863cdffb657 -->|calls| 36dea6ba_23b3_cc56_baf0_358018c65dc1 8b6696d4_4d1c_a51b_a833_e73360f261a3["lastStreamCreated()"] dd504b42_7fd8_c9e4_7833_8863cdffb657 -->|calls| 8b6696d4_4d1c_a51b_a833_e73360f261a3 style dd504b42_7fd8_c9e4_7833_8863cdffb657 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java lines 765–768
@Override
public boolean mayHaveCreatedStream(int streamId) {
return isValidStreamId(streamId) && streamId <= lastStreamCreated();
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does mayHaveCreatedStream() do?
mayHaveCreatedStream() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java.
Where is mayHaveCreatedStream() defined?
mayHaveCreatedStream() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2Connection.java at line 765.
What does mayHaveCreatedStream() call?
mayHaveCreatedStream() calls 2 function(s): isValidStreamId, lastStreamCreated.
What calls mayHaveCreatedStream()?
mayHaveCreatedStream() is called by 1 function(s): streamMayHaveExisted.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free