Home / Function/ priorityWriteAfterGoAwayShouldSucceed() — netty Function Reference

priorityWriteAfterGoAwayShouldSucceed() — netty Function Reference

Architecture documentation for the priorityWriteAfterGoAwayShouldSucceed() function in DefaultHttp2ConnectionEncoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  0e34657b_360f_da70_0b25_aaf454b58c74["priorityWriteAfterGoAwayShouldSucceed()"]
  aef19477_9a1f_48c4_824a_17c7f3ecbb10["DefaultHttp2ConnectionEncoderTest"]
  0e34657b_360f_da70_0b25_aaf454b58c74 -->|defined in| aef19477_9a1f_48c4_824a_17c7f3ecbb10
  5201c307_7996_fbce_683f_472edc39e053["goAwayReceived()"]
  0e34657b_360f_da70_0b25_aaf454b58c74 -->|calls| 5201c307_7996_fbce_683f_472edc39e053
  style 0e34657b_360f_da70_0b25_aaf454b58c74 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionEncoderTest.java lines 632–639

    @Test
    public void priorityWriteAfterGoAwayShouldSucceed() throws Exception {
        createStream(STREAM_ID, false);
        goAwayReceived(Integer.MAX_VALUE);
        ChannelPromise promise = newPromise();
        encoder.writePriority(ctx, STREAM_ID, 0, (short) 255, true, promise);
        verify(writer).writePriority(eq(ctx), eq(STREAM_ID), eq(0), eq((short) 255), eq(true), eq(promise));
    }

Domain

Subdomains

Frequently Asked Questions

What does priorityWriteAfterGoAwayShouldSucceed() do?
priorityWriteAfterGoAwayShouldSucceed() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionEncoderTest.java.
Where is priorityWriteAfterGoAwayShouldSucceed() defined?
priorityWriteAfterGoAwayShouldSucceed() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionEncoderTest.java at line 632.
What does priorityWriteAfterGoAwayShouldSucceed() call?
priorityWriteAfterGoAwayShouldSucceed() calls 1 function(s): goAwayReceived.

Analyze Your Own Codebase

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

Try Supermodel Free