Package io.netty.util.concurrent
Interface ThreadProperties
-
public interface ThreadProperties
Expose details for aThread
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
id()
boolean
isAlive()
boolean
isDaemon()
boolean
isInterrupted()
java.lang.String
name()
int
priority()
java.lang.StackTraceElement[]
stackTrace()
java.lang.Thread.State
state()
-
-
-
Method Detail
-
state
java.lang.Thread.State state()
- See Also:
Thread.getState()
-
priority
int priority()
- See Also:
Thread.getPriority()
-
isInterrupted
boolean isInterrupted()
- See Also:
Thread.isInterrupted()
-
isDaemon
boolean isDaemon()
- See Also:
Thread.isDaemon()
-
name
java.lang.String name()
- See Also:
Thread.getName()
-
id
long id()
- See Also:
Thread.getId()
-
stackTrace
java.lang.StackTraceElement[] stackTrace()
- See Also:
Thread.getStackTrace()
-
isAlive
boolean isAlive()
- See Also:
Thread.isAlive()
-
-