Class UnboundedFollowingOverFrame
- java.lang.Object
-
- org.apache.flink.table.runtime.operators.over.frame.UnboundedFollowingOverFrame
-
- All Implemented Interfaces:
Serializable
,OverWindowFrame
- Direct Known Subclasses:
RangeUnboundedFollowingOverFrame
,RowUnboundedFollowingOverFrame
public abstract class UnboundedFollowingOverFrame extends Object implements OverWindowFrame
The UnboundedFollowing window frame. SeeRowUnboundedFollowingOverFrame
andRangeUnboundedFollowingOverFrame
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnboundedFollowingOverFrame(RowType valueType, GeneratedAggsHandleFunction aggsHandleFunction)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
open(ExecutionContext ctx)
Open to init withExecutionContext
.void
prepare(ResettableExternalBuffer rows)
Prepare for next partition.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.runtime.operators.over.frame.OverWindowFrame
process
-
-
-
-
Constructor Detail
-
UnboundedFollowingOverFrame
public UnboundedFollowingOverFrame(RowType valueType, GeneratedAggsHandleFunction aggsHandleFunction)
-
-
Method Detail
-
open
public void open(ExecutionContext ctx) throws Exception
Description copied from interface:OverWindowFrame
Open to init withExecutionContext
.- Specified by:
open
in interfaceOverWindowFrame
- Throws:
Exception
-
prepare
public void prepare(ResettableExternalBuffer rows) throws Exception
Description copied from interface:OverWindowFrame
Prepare for next partition.- Specified by:
prepare
in interfaceOverWindowFrame
- Throws:
Exception
-
-