Uses of Interface
org.snmp4j.util.ThreadFactory
-
Packages that use ThreadFactory Package Description org.snmp4j Provides classes and interfaces for creating, sending, and receiving SNMP messages.org.snmp4j.util Contains table retrieval utilities and multi-threading support classes as well as miscellaneous utility classes. -
-
Uses of ThreadFactory in org.snmp4j
Fields in org.snmp4j declared as ThreadFactory Modifier and Type Field Description private static ThreadFactory
SNMP4JSettings. threadFactory
By default SNMP4J usesThread
instances to run concurrent tasks.Methods in org.snmp4j that return ThreadFactory Modifier and Type Method Description static ThreadFactory
SNMP4JSettings. getThreadFactory()
Gets the thread factory.Methods in org.snmp4j with parameters of type ThreadFactory Modifier and Type Method Description static void
SNMP4JSettings. setThreadFactory(ThreadFactory newThreadFactory)
Sets the thread factory for creating new threads of execution. -
Uses of ThreadFactory in org.snmp4j.util
Classes in org.snmp4j.util that implement ThreadFactory Modifier and Type Class Description class
DefaultThreadFactory
TheDefaultThreadFactory
createsWorkerTask
instances that allow concurrent execution of tasks.
-