Package org.apache.storm.windowing
Class DefaultEvictionContext
java.lang.Object
org.apache.storm.windowing.DefaultEvictionContext
- All Implemented Interfaces:
EvictionContext
-
Constructor Summary
ConstructorDescriptionDefaultEvictionContext
(Long referenceTime) DefaultEvictionContext
(Long referenceTime, Long currentCount) DefaultEvictionContext
(Long referenceTime, Long currentCount, Long slidingCount) DefaultEvictionContext
(Long referenceTime, Long currentCount, Long slidingCount, Long slidingInterval) -
Method Summary
Modifier and TypeMethodDescriptionReturns the current count of events in the queue up to the reference time based on which count based evictions can be performed.Returns the reference time that the eviction policy could use to evict the events.Returns the sliding count for count based windows.Returns the sliding interval for time based windows.
-
Constructor Details
-
DefaultEvictionContext
-
DefaultEvictionContext
-
DefaultEvictionContext
-
DefaultEvictionContext
-
-
Method Details
-
getReferenceTime
Description copied from interface:EvictionContext
Returns the reference time that the eviction policy could use to evict the events. In the case of event time processing, this would be the watermark time.- Specified by:
getReferenceTime
in interfaceEvictionContext
- Returns:
- the reference time in millis
-
getCurrentCount
Description copied from interface:EvictionContext
Returns the current count of events in the queue up to the reference time based on which count based evictions can be performed.- Specified by:
getCurrentCount
in interfaceEvictionContext
- Returns:
- the current count
-
getSlidingCount
Description copied from interface:EvictionContext
Returns the sliding count for count based windows.- Specified by:
getSlidingCount
in interfaceEvictionContext
- Returns:
- the sliding count
-
getSlidingInterval
Description copied from interface:EvictionContext
Returns the sliding interval for time based windows.- Specified by:
getSlidingInterval
in interfaceEvictionContext
- Returns:
- the sliding interval
-