bootstrapEnv() — netty Function Reference
Architecture documentation for the bootstrapEnv() function in Http2ConnectionRoundtripTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1dd685b8_9b56_5b35_70ca_7f2bf9016254["bootstrapEnv()"] 0d6189e8_c033_39ff_d087_9019351440fe["Http2ConnectionRoundtripTest"] 1dd685b8_9b56_5b35_70ca_7f2bf9016254 -->|defined in| 0d6189e8_c033_39ff_d087_9019351440fe 3ddf6044_f390_440e_808b_1a2bcf271f19["inflightFrameAfterStreamResetShouldNotMakeConnectionUnusable()"] 3ddf6044_f390_440e_808b_1a2bcf271f19 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 bcc1b7fc_dfe6_0e61_18a5_ee61d86850af["headersWithEndStreamShouldNotSendError()"] bcc1b7fc_dfe6_0e61_18a5_ee61d86850af -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 e115b447_6cad_967b_30a3_5a0da892beed["encodeViolatesMaxHeaderListSizeCanStillUseConnection()"] e115b447_6cad_967b_30a3_5a0da892beed -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 f54d388f_d30d_8bd4_0f10_a022a29e39de["testSettingsAckIsSentBeforeUsingFlowControl()"] f54d388f_d30d_8bd4_0f10_a022a29e39de -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 56d480f2_e781_ea14_217f_5e069e89de61["priorityUsingHigherValuedStreamIdDoesNotPreventUsingLowerStreamId()"] 56d480f2_e781_ea14_217f_5e069e89de61 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 dde7be9c_363c_7ad0_e348_fa60e9ac1705["headersUsingHigherValuedStreamIdPreventsUsingLowerStreamId()"] dde7be9c_363c_7ad0_e348_fa60e9ac1705 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 8975d416_be2b_5967_efb0_c5e70ccff14c["headersWriteForPeerStreamWhichWasResetShouldNotGoAway()"] 8975d416_be2b_5967_efb0_c5e70ccff14c -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 8d8c4f92_bb67_e117_1fa5_19301fa22d7d["http2ExceptionInPipelineShouldCloseConnection()"] 8d8c4f92_bb67_e117_1fa5_19301fa22d7d -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 5734273e_861e_c30a_06c0_7cf9dd33f4e6["listenerExceptionShouldCloseConnection()"] 5734273e_861e_c30a_06c0_7cf9dd33f4e6 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 0a0fd199_06c5_f2f7_c496_f1e7f6091012["writeOfEmptyReleasedBufferQueuedInFlowControllerShouldFail()"] 0a0fd199_06c5_f2f7_c496_f1e7f6091012 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 b96cbee9_ea7a_094e_d57d_858069a19af9["writeFailureFlowControllerRemoveFrame()"] b96cbee9_ea7a_094e_d57d_858069a19af9 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 28e23e25_43a6_273e_d94b_57775bcfec12["nonHttp2ExceptionInPipelineShouldNotCloseConnection()"] 28e23e25_43a6_273e_d94b_57775bcfec12 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 aacacf69_c5ae_7500_a856_695d05f9c4a2["noMoreStreamIdsShouldSendGoAway()"] aacacf69_c5ae_7500_a856_695d05f9c4a2 -->|calls| 1dd685b8_9b56_5b35_70ca_7f2bf9016254 style 1dd685b8_9b56_5b35_70ca_7f2bf9016254 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/Http2ConnectionRoundtripTest.java lines 1145–1148
private void bootstrapEnv(int dataCountDown, int settingsAckCount,
int requestCountDown, int trailersCountDown) throws Exception {
bootstrapEnv(dataCountDown, settingsAckCount, requestCountDown, trailersCountDown, -1);
}
Domain
Subdomains
Called By
- createStreamAfterReceiveGoAwayShouldNotSendGoAway()
- encodeViolatesMaxHeaderListSizeCanStillUseConnection()
- flowControlProperlyChunksLargeMessage()
- headersUsingHigherValuedStreamIdPreventsUsingLowerStreamId()
- headersWithEndStreamShouldNotSendError()
- headersWriteForPeerStreamWhichWasResetShouldNotGoAway()
- http2ExceptionInPipelineShouldCloseConnection()
- inflightFrameAfterStreamResetShouldNotMakeConnectionUnusable()
- listenerExceptionShouldCloseConnection()
- listenerIsNotifiedOfGoawayBeforeStreamsAreRemovedFromTheConnection()
- noMoreStreamIdsShouldSendGoAway()
- nonHttp2ExceptionInPipelineShouldNotCloseConnection()
- priorityUsingHigherValuedStreamIdDoesNotPreventUsingLowerStreamId()
- stressTest()
- testSettingsAckIsSentBeforeUsingFlowControl()
- writeFailureFlowControllerRemoveFrame()
- writeOfEmptyReleasedBufferQueuedInFlowControllerShouldFail()
Source
Frequently Asked Questions
What does bootstrapEnv() do?
bootstrapEnv() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2ConnectionRoundtripTest.java.
Where is bootstrapEnv() defined?
bootstrapEnv() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/Http2ConnectionRoundtripTest.java at line 1145.
What calls bootstrapEnv()?
bootstrapEnv() is called by 17 function(s): createStreamAfterReceiveGoAwayShouldNotSendGoAway, encodeViolatesMaxHeaderListSizeCanStillUseConnection, flowControlProperlyChunksLargeMessage, headersUsingHigherValuedStreamIdPreventsUsingLowerStreamId, headersWithEndStreamShouldNotSendError, headersWriteForPeerStreamWhichWasResetShouldNotGoAway, http2ExceptionInPipelineShouldCloseConnection, inflightFrameAfterStreamResetShouldNotMakeConnectionUnusable, and 9 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free