public class SnmpFactoryConfig extends Object
SnmpFactory
.Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_SCHEDULED_WORKER_POOL_SIZE
Default size of the scheduled worker pool.
|
static int |
DEFAULT_WORKER_POOL_SIZE
Default size of the worker pool.
|
Constructor and Description |
---|
SnmpFactoryConfig() |
Modifier and Type | Method and Description |
---|---|
Object |
getProperty(String name)
Gets the value of a provider-specific property.
|
int |
getScheduledWorkerPoolSize()
Gets the number of threads to keep in the pool for scheduled tasks.
|
int |
getWorkerPoolSize()
Gets the minimum number of threads to keep in the pool for short-lived
tasks.
|
void |
setProperty(String name,
Object value)
Sets the value of a provider-specific property.
|
void |
setScheduledWorkerPoolSize(int scheduledWorkerPoolSize)
Sets the number of threads to keep in the pool for scheduled tasks.
|
void |
setWorkerPoolSize(int workerPoolSize)
Sets the minimum number of threads to keep in the pool for short-lived
tasks.
|
public static final int DEFAULT_WORKER_POOL_SIZE
public static final int DEFAULT_SCHEDULED_WORKER_POOL_SIZE
public int getWorkerPoolSize()
The specified number of threads will remain available in the pool, even if idle. Tasks will queue when all threads are busy.
public void setWorkerPoolSize(int workerPoolSize)
The specified number of threads will remain available in the pool, even if idle. Tasks will queue when all threads are busy.
workerPoolSize
- number of threadspublic int getScheduledWorkerPoolSize()
The specified number of threads will remain available in the pool, even if idle. Tasks that are ready to run (based on configured schedule) will queue when all threads are busy.
public void setScheduledWorkerPoolSize(int scheduledWorkerPoolSize)
The specified number of threads will remain available in the pool, even if idle. Tasks that are ready to run (based on configured schedule) will queue when all threads are busy.
scheduledWorkerPoolSize
- number of threadspublic Object getProperty(String name)
name
- name of the value to retrievename
or null
if
the named property does not existCopyright © 2012–2015. All rights reserved.