public static enum BroadleafSystemEvent.BroadleafEventScopeType extends Enum<BroadleafSystemEvent.BroadleafEventScopeType>
| Enum Constant and Description |
|---|
DURABLE_GLOBAL
Durable events are always global, but are not removed from the system, allowing them to be consumed across server restarts,
or when new nodes enter the cluster (VM level events already exhibit behavior that allow them to execute even after
system restarts and do not require additional "durable" classification).
|
GLOBAL
All nodes will execute
|
LOCAL
Consume the event locally only
|
NON_ASYNC_LOCAL
Consume the event locally only in the same thread
|
NON_ASYNC_LOCAL_NO_RESUME
Consume the event locally only in the same thread and do not allow auto resume
|
VM
Limit execution to a single, arbitrary node
|
| Modifier and Type | Method and Description |
|---|---|
static BroadleafSystemEvent.BroadleafEventScopeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BroadleafSystemEvent.BroadleafEventScopeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BroadleafSystemEvent.BroadleafEventScopeType GLOBAL
public static final BroadleafSystemEvent.BroadleafEventScopeType VM
public static final BroadleafSystemEvent.BroadleafEventScopeType LOCAL
public static final BroadleafSystemEvent.BroadleafEventScopeType NON_ASYNC_LOCAL
public static final BroadleafSystemEvent.BroadleafEventScopeType NON_ASYNC_LOCAL_NO_RESUME
public static final BroadleafSystemEvent.BroadleafEventScopeType DURABLE_GLOBAL
public static BroadleafSystemEvent.BroadleafEventScopeType[] values()
for (BroadleafSystemEvent.BroadleafEventScopeType c : BroadleafSystemEvent.BroadleafEventScopeType.values()) System.out.println(c);
public static BroadleafSystemEvent.BroadleafEventScopeType 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 © 2025. All rights reserved.