public enum CacheLiveDataAction extends Enum<CacheLiveDataAction>
Enum Constant and Description |
---|
FLOW_THRU
Pass through to the application live data that arrives that matches the
topic while a cache request is outstanding.
|
FULFILL
Consider the cache request finished when live data arrives that matches
the topic.
|
QUEUE
Queue live data that arrives that matches the topic until the cache
request completes.
|
Modifier and Type | Method and Description |
---|---|
static CacheLiveDataAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheLiveDataAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheLiveDataAction FULFILL
FLOW_THRU
.public static final CacheLiveDataAction QUEUE
FLOW_THRU
.public static final CacheLiveDataAction FLOW_THRU
FLOW_THRU
.public static CacheLiveDataAction[] values()
for (CacheLiveDataAction c : CacheLiveDataAction.values()) System.out.println(c);
public static CacheLiveDataAction 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 2004-2024 Solace Corporation. All rights reserved.