Uses of Interface
org.snmp4j.util.WorkerTask
-
Packages that use WorkerTask Package Description org.snmp4j.transport Provides transport protocol mappings for SNMP.org.snmp4j.util Contains table retrieval utilities and multi-threading support classes as well as miscellaneous utility classes. -
-
Uses of WorkerTask in org.snmp4j.transport
Classes in org.snmp4j.transport that implement WorkerTask Modifier and Type Class Description class
AbstractTransportServerThread<A extends Address,S extends AbstractSocketEntry<A>>
TheAbstractTransportServerThread
is aWorkerTask
that serves server connections using Java NIO forConnectionOrientedTransportMapping
s.protected class
DefaultTcpTransportMapping.ServerThread
protected class
DefaultUdpTransportMapping.ListenThread
Fields in org.snmp4j.transport declared as WorkerTask Modifier and Type Field Description protected WorkerTask
AbstractTransportMapping. listenWorkerTask
Methods in org.snmp4j.transport that return WorkerTask Modifier and Type Method Description WorkerTask
AbstractTransportMapping. getListenWorkerTask()
Gets theWorkerTask
that is responsible for receiving new messages.WorkerTask
DummyTransport.DummyTransportResponder. getListenWorkerTask()
WorkerTask
DummyTransport. getListenWorkerTask()
WorkerTask
TLSTM. getListenWorkerTask()
-
Uses of WorkerTask in org.snmp4j.util
Subinterfaces of WorkerTask in org.snmp4j.util Modifier and Type Interface Description interface
SchedulerTask
TheSchedulerTask
extends theRunnable
interface by methods that are needed for recurrent execution of a task.Classes in org.snmp4j.util that implement WorkerTask Modifier and Type Class Description class
DefaultThreadFactory.WorkerThread
Methods in org.snmp4j.util that return WorkerTask Modifier and Type Method Description WorkerTask
DefaultThreadFactory. createWorkerThread(String name, WorkerTask task, boolean daemon)
Creates a new thread of execution for the supplied task.WorkerTask
ThreadFactory. createWorkerThread(String name, WorkerTask task, boolean daemon)
Creates a new thread of execution for the supplied task.Methods in org.snmp4j.util with parameters of type WorkerTask Modifier and Type Method Description WorkerTask
DefaultThreadFactory. createWorkerThread(String name, WorkerTask task, boolean daemon)
Creates a new thread of execution for the supplied task.WorkerTask
ThreadFactory. createWorkerThread(String name, WorkerTask task, boolean daemon)
Creates a new thread of execution for the supplied task.void
ThreadPool. execute(WorkerTask task)
Executes a task on behalf of this thread pool.void
ThreadPool.TaskManager. execute(WorkerTask task)
void
WorkerPool. execute(WorkerTask task)
Executes a task on behalf of this worker pool.protected void
ThreadPool. handleInterruptedExceptionOnExecute(InterruptedException interruptedException, WorkerTask task)
Handle a interrupted exception on the execution attempt ofWorkerTask
.boolean
ThreadPool. tryToExecute(WorkerTask task)
Tries to execute a task on behalf of this thread pool.boolean
WorkerPool. tryToExecute(WorkerTask task)
Tries to execute a task on behalf of this worker pool.Constructors in org.snmp4j.util with parameters of type WorkerTask Constructor Description WorkerThread(String name, WorkerTask task)
-