main() — netty Function Reference
Architecture documentation for the main() function in AutobahnServer.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD bb53466f_7329_2040_7331_e79c89b0faf2["main()"] c8849536_a67f_0799_3c1a_c71e4ec6d145["AutobahnServer"] bb53466f_7329_2040_7331_e79c89b0faf2 -->|defined in| c8849536_a67f_0799_3c1a_c71e4ec6d145 2a3a197f_acf6_ff57_ed27_be6caf09231c["AutobahnServer()"] bb53466f_7329_2040_7331_e79c89b0faf2 -->|calls| 2a3a197f_acf6_ff57_ed27_be6caf09231c 372c8382_5835_52eb_dfa8_f1feffe27f33["run()"] bb53466f_7329_2040_7331_e79c89b0faf2 -->|calls| 372c8382_5835_52eb_dfa8_f1feffe27f33 style bb53466f_7329_2040_7331_e79c89b0faf2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite-autobahn/src/main/java/io/netty/testsuite/autobahn/AutobahnServer.java lines 56–64
public static void main(String[] args) throws Exception {
int port;
if (args.length > 0) {
port = Integer.parseInt(args[0]);
} else {
port = 9000;
}
new AutobahnServer(port).run();
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does main() do?
main() is a function in the netty codebase, defined in testsuite-autobahn/src/main/java/io/netty/testsuite/autobahn/AutobahnServer.java.
Where is main() defined?
main() is defined in testsuite-autobahn/src/main/java/io/netty/testsuite/autobahn/AutobahnServer.java at line 56.
What does main() call?
main() calls 2 function(s): AutobahnServer, run.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free