Home / Function/ testDuplicateReadGatheringByteChannelMultipleThreads() — netty Function Reference

testDuplicateReadGatheringByteChannelMultipleThreads() — netty Function Reference

Architecture documentation for the testDuplicateReadGatheringByteChannelMultipleThreads() function in AbstractByteBufTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  dd988c2f_724e_238e_9a57_0d5e65a9d84e["testDuplicateReadGatheringByteChannelMultipleThreads()"]
  6540f2d1_cdad_6705_dd1d_9a24e2e53242["AbstractByteBufTest"]
  dd988c2f_724e_238e_9a57_0d5e65a9d84e -->|defined in| 6540f2d1_cdad_6705_dd1d_9a24e2e53242
  3df03248_fc67_1563_4b08_c13178b6a5bc["testReadGatheringByteChannelMultipleThreads()"]
  dd988c2f_724e_238e_9a57_0d5e65a9d84e -->|calls| 3df03248_fc67_1563_4b08_c13178b6a5bc
  style dd988c2f_724e_238e_9a57_0d5e65a9d84e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/test/java/io/netty/buffer/AbstractByteBufTest.java lines 2717–2729

    @Test
    public void testDuplicateReadGatheringByteChannelMultipleThreads() throws Exception {
        final byte[] bytes = new byte[8];
        random.nextBytes(bytes);

        final ByteBuf buffer = newBuffer(8);
        buffer.writeBytes(bytes);
        try {
            testReadGatheringByteChannelMultipleThreads(buffer, bytes, false);
        } finally {
            buffer.release();
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testDuplicateReadGatheringByteChannelMultipleThreads() do?
testDuplicateReadGatheringByteChannelMultipleThreads() is a function in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/AbstractByteBufTest.java.
Where is testDuplicateReadGatheringByteChannelMultipleThreads() defined?
testDuplicateReadGatheringByteChannelMultipleThreads() is defined in buffer/src/test/java/io/netty/buffer/AbstractByteBufTest.java at line 2717.
What does testDuplicateReadGatheringByteChannelMultipleThreads() call?
testDuplicateReadGatheringByteChannelMultipleThreads() calls 1 function(s): testReadGatheringByteChannelMultipleThreads.

Analyze Your Own Codebase

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

Try Supermodel Free