Package com.exedio.cope
Class ThreadController
- java.lang.Object
-
- com.exedio.cope.ThreadController
-
public final class ThreadController extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getId()
String
getName()
int
getPriority()
StackTraceElement[]
getStackTrace()
Thread.State
getState()
boolean
isAlive()
boolean
isDaemon()
void
restart()
void
setPriority(int priority)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
-
isDaemon
public boolean isDaemon()
-
getPriority
public int getPriority()
-
setPriority
public void setPriority(int priority)
-
restart
public void restart()
-
getId
public long getId()
-
isAlive
public boolean isAlive()
-
getState
public Thread.State getState()
-
getStackTrace
public StackTraceElement[] getStackTrace()
-
-