ThreadProperties Type — netty Architecture
Architecture documentation for the ThreadProperties type/interface in ThreadProperties.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD bd6f05c9_3832_8c92_9896_d64985cf4fc2["ThreadProperties"] c9b987fb_425a_df26_5e36_db202b57487b["ThreadProperties.java"] bd6f05c9_3832_8c92_9896_d64985cf4fc2 -->|defined in| c9b987fb_425a_df26_5e36_db202b57487b style bd6f05c9_3832_8c92_9896_d64985cf4fc2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/concurrent/ThreadProperties.java lines 21–61
public interface ThreadProperties {
/**
* @see Thread#getState()
*/
Thread.State state();
/**
* @see Thread#getPriority()
*/
int priority();
/**
* @see Thread#isInterrupted()
*/
boolean isInterrupted();
/**
* @see Thread#isDaemon()
*/
boolean isDaemon();
/**
* @see Thread#getName()
*/
String name();
/**
* @see Thread#getId()
*/
long id();
/**
* @see Thread#getStackTrace()
*/
StackTraceElement[] stackTrace();
/**
* @see Thread#isAlive()
*/
boolean isAlive();
}
Source
Frequently Asked Questions
What is the ThreadProperties type?
ThreadProperties is a type/interface in the netty codebase, defined in common/src/main/java/io/netty/util/concurrent/ThreadProperties.java.
Where is ThreadProperties defined?
ThreadProperties is defined in common/src/main/java/io/netty/util/concurrent/ThreadProperties.java at line 21.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free