public enum JobMonitorUpdateMode extends Enum<JobMonitorUpdateMode>
| Enum Constant and Description |
|---|
DEFERRED_NOTIFICATIONS
Updates are computed from JMX notifications and published periodically as job monitor events.
|
IMMEDIATE_NOTIFICATIONS
Updates are computed from JMX notifications and pushed immediately as job monitor events.
|
POLLING
Updates are computed by polling information on the jobs from the drivers at regular intervals.
|
| Modifier and Type | Method and Description |
|---|---|
static JobMonitorUpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobMonitorUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobMonitorUpdateMode POLLING
public static final JobMonitorUpdateMode IMMEDIATE_NOTIFICATIONS
public static final JobMonitorUpdateMode DEFERRED_NOTIFICATIONS
public static JobMonitorUpdateMode[] values()
for (JobMonitorUpdateMode c : JobMonitorUpdateMode.values()) System.out.println(c);
public static JobMonitorUpdateMode 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 © 2005-2019 JPPF Team.