public static enum EvictionPolicy.Action extends java.lang.Enum<EvictionPolicy.Action>
EvictionPolicy.evict(Event)
is invoked.Enum Constant and Description |
---|
EXPIRE
expire the event and remove it from the queue.
|
KEEP
don't include in the current window but keep the event in the queue for evaluating
as a part of future windows.
|
PROCESS
ackage org.apache.storm.windowing;
process the event in the current window of events.
|
STOP
stop processing the queue, there cannot be anymore events satisfying the eviction policy.
|
Modifier and Type | Method and Description |
---|---|
static EvictionPolicy.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EvictionPolicy.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvictionPolicy.Action EXPIRE
public static final EvictionPolicy.Action PROCESS
public static final EvictionPolicy.Action KEEP
public static final EvictionPolicy.Action STOP
public static EvictionPolicy.Action[] values()
for (EvictionPolicy.Action c : EvictionPolicy.Action.values()) System.out.println(c);
public static EvictionPolicy.Action valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null