T
- the type of event tracked by this policy.public class WatermarkCountTriggerPolicy<T> extends java.lang.Object implements TriggerPolicy<T,java.lang.Long>
Constructor and Description |
---|
WatermarkCountTriggerPolicy(int count,
TriggerHandler handler,
EvictionPolicy<T,?> evictionPolicy,
WindowManager<T> windowManager) |
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
getState()
Return runtime state to be checkpointed by the framework for restoring the trigger
policy in case of failures.
|
void |
reset()
resets the trigger policy.
|
void |
restoreState(java.lang.Long state)
Restore the trigger policy from the state that was earlier checkpointed by the framework.
|
void |
shutdown()
Any clean up could be handled here.
|
void |
start()
Starts the trigger policy.
|
java.lang.String |
toString() |
void |
track(Event<T> event)
Tracks the event and could use this to invoke the trigger.
|
public WatermarkCountTriggerPolicy(int count, TriggerHandler handler, EvictionPolicy<T,?> evictionPolicy, WindowManager<T> windowManager)
public void track(Event<T> event)
TriggerPolicy
track
in interface TriggerPolicy<T,java.lang.Long>
event
- the input eventpublic void reset()
TriggerPolicy
reset
in interface TriggerPolicy<T,java.lang.Long>
public void start()
TriggerPolicy
start
in interface TriggerPolicy<T,java.lang.Long>
public void shutdown()
TriggerPolicy
shutdown
in interface TriggerPolicy<T,java.lang.Long>
public java.lang.Long getState()
TriggerPolicy
getState
in interface TriggerPolicy<T,java.lang.Long>
public void restoreState(java.lang.Long state)
TriggerPolicy
restoreState
in interface TriggerPolicy<T,java.lang.Long>
state
- the statepublic java.lang.String toString()
toString
in class java.lang.Object