public interface ThreadProperties
Thread
.Modifier and Type | Method and Description |
---|---|
long |
id() |
boolean |
isAlive() |
boolean |
isDaemon() |
boolean |
isInterrupted() |
String |
name() |
int |
priority() |
StackTraceElement[] |
stackTrace() |
Thread.State |
state() |
Thread.State state()
Thread.getState()
int priority()
Thread.getPriority()
boolean isInterrupted()
Thread.isInterrupted()
boolean isDaemon()
Thread.isDaemon()
String name()
Thread.getName()
long id()
Thread.getId()
StackTraceElement[] stackTrace()
Thread.getStackTrace()
boolean isAlive()
Thread.isAlive()
Copyright © 2008–2017 The Netty Project. All rights reserved.