public enum SchedulerPoolStrategy extends Enum<SchedulerPoolStrategy>
SchedulerService should use to provision the thread pools that back the three main types of
schedulers| Enum Constant and Description |
|---|
DEDICATED
Each scheduler type is backed by its own thread pool
|
UBER
The three scheduler types are backed by one unique thread pool.
|
| Modifier and Type | Method and Description |
|---|---|
static SchedulerPoolStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerPoolStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerPoolStrategy UBER
public static final SchedulerPoolStrategy DEDICATED
public static SchedulerPoolStrategy[] values()
for (SchedulerPoolStrategy c : SchedulerPoolStrategy.values()) System.out.println(c);
public static SchedulerPoolStrategy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024 MuleSoft, Inc.. All rights reserved.