Home / Function/ testMultipleBindDatagramChannelWithoutReusePortFails0() — netty Function Reference

testMultipleBindDatagramChannelWithoutReusePortFails0() — netty Function Reference

Architecture documentation for the testMultipleBindDatagramChannelWithoutReusePortFails0() function in EpollReuseAddrTest.java from the netty codebase.

Function java Buffer Search called by 2

Entity Profile

Dependency Diagram

graph TD
  1e25e9c6_d332_8512_88bf_c33b21ddefa0["testMultipleBindDatagramChannelWithoutReusePortFails0()"]
  872e58d8_72a4_04f4_f4a3_a86fb110f538["EpollReuseAddrTest"]
  1e25e9c6_d332_8512_88bf_c33b21ddefa0 -->|defined in| 872e58d8_72a4_04f4_f4a3_a86fb110f538
  db502e8a_8e69_34b7_3054_d4725ec9080e["testMultipleBindSocketChannelWithoutReusePortFails()"]
  db502e8a_8e69_34b7_3054_d4725ec9080e -->|calls| 1e25e9c6_d332_8512_88bf_c33b21ddefa0
  09ae229f_6cc2_3ad2_8aa5_2c734d8add37["testMultipleBindDatagramChannelWithoutReusePortFails()"]
  09ae229f_6cc2_3ad2_8aa5_2c734d8add37 -->|calls| 1e25e9c6_d332_8512_88bf_c33b21ddefa0
  style 1e25e9c6_d332_8512_88bf_c33b21ddefa0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollReuseAddrTest.java lines 104–114

    private static void testMultipleBindDatagramChannelWithoutReusePortFails0(AbstractBootstrap<?, ?> bootstrap) {
        bootstrap.handler(new LoggingHandler(LogLevel.ERROR));
        ChannelFuture future = bootstrap.bind().syncUninterruptibly();
        try {
            bootstrap.bind(future.channel().localAddress()).syncUninterruptibly();
            fail();
        } catch (Exception e) {
            assertTrue(e instanceof IOException);
        }
        future.channel().close().syncUninterruptibly();
    }

Domain

Subdomains

Frequently Asked Questions

What does testMultipleBindDatagramChannelWithoutReusePortFails0() do?
testMultipleBindDatagramChannelWithoutReusePortFails0() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollReuseAddrTest.java.
Where is testMultipleBindDatagramChannelWithoutReusePortFails0() defined?
testMultipleBindDatagramChannelWithoutReusePortFails0() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollReuseAddrTest.java at line 104.
What calls testMultipleBindDatagramChannelWithoutReusePortFails0()?
testMultipleBindDatagramChannelWithoutReusePortFails0() is called by 2 function(s): testMultipleBindDatagramChannelWithoutReusePortFails, testMultipleBindSocketChannelWithoutReusePortFails.

Analyze Your Own Codebase

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

Try Supermodel Free