public class Threads
extends java.lang.Object
| Constructor and Description |
|---|
Threads() |
| Modifier and Type | Method and Description |
|---|---|
static void |
dummy(java.lang.Object o)
A dummy function that is used to avoid compiler from optimizing
statements around it.
|
static void |
joinAndInterrupt(java.lang.Thread thd,
int timeout)
Waits a thread to die (and interrupt once a while)
|
static void |
setDaemon(java.lang.Thread thd,
boolean daemon)
Sets the priority without throwing any exception but log warning.
|
static void |
setPriority(java.lang.Thread thd,
int priority)
Sets the priority without throwing any exception but log warning.
|
static void |
sleep(int millisecs)
Put the current thread to sleep for a while.
|
public static final void sleep(int millisecs)
SystemException - if it is interrupted.public static final void setPriority(java.lang.Thread thd,
int priority)
public static final void setDaemon(java.lang.Thread thd,
boolean daemon)
public static final void joinAndInterrupt(java.lang.Thread thd,
int timeout)
throws java.lang.InterruptedException
timeout - how long to wait (0 means forever)java.lang.InterruptedExceptionpublic static final void dummy(java.lang.Object o)
Copyright © 2005-2011 Potix Corporation. All Rights Reserved.