Home / Function/ serverDomainSocket() — netty Function Reference

serverDomainSocket() — netty Function Reference

Architecture documentation for the serverDomainSocket() function in EpollSocketTestPermutation.java from the netty codebase.

Function java Buffer Search called by 1

Entity Profile

Dependency Diagram

graph TD
  932c82b1_c285_251f_f315_a04e7c5face6["serverDomainSocket()"]
  2104f5df_e24e_3ceb_8b6a_7d1927ef598b["EpollSocketTestPermutation"]
  932c82b1_c285_251f_f315_a04e7c5face6 -->|defined in| 2104f5df_e24e_3ceb_8b6a_7d1927ef598b
  5da5b66c_a6eb_3e45_d6c6_36d0a28d5415["domainSocket()"]
  5da5b66c_a6eb_3e45_d6c6_36d0a28d5415 -->|calls| 932c82b1_c285_251f_f315_a04e7c5face6
  style 932c82b1_c285_251f_f315_a04e7c5face6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketTestPermutation.java lines 209–219

    public List<BootstrapFactory<ServerBootstrap>> serverDomainSocket() {
        return Collections.<BootstrapFactory<ServerBootstrap>>singletonList(
                new BootstrapFactory<ServerBootstrap>() {
                    @Override
                    public ServerBootstrap newInstance() {
                        return new ServerBootstrap().group(EPOLL_GROUP)
                                .channel(EpollServerDomainSocketChannel.class);
                    }
                }
        );
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does serverDomainSocket() do?
serverDomainSocket() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketTestPermutation.java.
Where is serverDomainSocket() defined?
serverDomainSocket() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketTestPermutation.java at line 209.
What calls serverDomainSocket()?
serverDomainSocket() is called by 1 function(s): domainSocket.

Analyze Your Own Codebase

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

Try Supermodel Free