start() — netty Function Reference
Architecture documentation for the start() function in RevocationServer.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b888b869_279d_8665_9465_94cc45f8b927["start()"] 7182e924_897c_1916_3c7b_3c294ba4f4a0["RevocationServer"] b888b869_279d_8665_9465_94cc45f8b927 -->|defined in| 7182e924_897c_1916_3c7b_3c294ba4f4a0 060a2846_db89_ebb0_8d22_619b65267204["RevocationServer()"] 060a2846_db89_ebb0_8d22_619b65267204 -->|calls| b888b869_279d_8665_9465_94cc45f8b927 style b888b869_279d_8665_9465_94cc45f8b927 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
pkitesting/src/main/java/io/netty/pkitesting/RevocationServer.java lines 106–116
private void start() {
if (Thread.currentThread().isDaemon()) {
crlServer.start();
} else {
// It's important the CRL server creates a daemon thread,
// because it's a singleton and won't be stopped except by terminating the JVM.
// Threads in the ForkJoin common pool are always daemon, and JUnit 5 initializes
// it anyway, so we can let it call start() for us.
ForkJoinPool.commonPool().execute(crlServer::start);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does start() do?
start() is a function in the netty codebase, defined in pkitesting/src/main/java/io/netty/pkitesting/RevocationServer.java.
Where is start() defined?
start() is defined in pkitesting/src/main/java/io/netty/pkitesting/RevocationServer.java at line 106.
What calls start()?
start() is called by 1 function(s): RevocationServer.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free