- java.lang.Object
-
- org.snmp4j.util.DefaultThreadFactory.WorkerThread
-
- All Implemented Interfaces:
java.lang.Runnable
,WorkerTask
- Enclosing class:
- DefaultThreadFactory
public class DefaultThreadFactory.WorkerThread extends java.lang.Object implements WorkerTask
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
started
private WorkerTask
task
private java.lang.Thread
thread
-
Constructor Summary
Constructors Constructor Description WorkerThread(java.lang.String name, WorkerTask task)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Thread
getThread()
void
interrupt()
Interrupts this task.void
join()
Waits until this task has been finished.void
run()
void
terminate()
TheWorkerPool
might call this method to hint the activeWorkTask
instance to complete execution as soon as possible.
-
-
-
Field Detail
-
thread
private final java.lang.Thread thread
-
task
private final WorkerTask task
-
started
private boolean started
-
-
Constructor Detail
-
WorkerThread
public WorkerThread(java.lang.String name, WorkerTask task)
-
-
Method Detail
-
terminate
public void terminate()
Description copied from interface:WorkerTask
TheWorkerPool
might call this method to hint the activeWorkTask
instance to complete execution as soon as possible.- Specified by:
terminate
in interfaceWorkerTask
-
join
public void join() throws java.lang.InterruptedException
Description copied from interface:WorkerTask
Waits until this task has been finished.- Specified by:
join
in interfaceWorkerTask
- Throws:
java.lang.InterruptedException
- if the join has been interrupted by another thread.
-
run
public void run()
- Specified by:
run
in interfacejava.lang.Runnable
-
interrupt
public void interrupt()
Description copied from interface:WorkerTask
Interrupts this task.- Specified by:
interrupt
in interfaceWorkerTask
- See Also:
Thread.interrupt()
-
getThread
public java.lang.Thread getThread()
-
-