Interface InternalAsyncWindowFunction.InternalWindowContext

All Superinterfaces:
Serializable
All Known Implementing Classes:
AsyncWindowOperator.WindowContext
Enclosing interface:
InternalAsyncWindowFunction<IN,OUT,KEY,W extends Window>

public static interface InternalAsyncWindowFunction.InternalWindowContext extends Serializable
A context for InternalAsyncWindowFunction, similar to ProcessWindowFunction.Context but for internal use.
  • Method Summary

    Modifier and Type
    Method
    Description
    long
     
    long
     
    org.apache.flink.api.common.state.KeyedStateStore
     
    <X> void
    output(org.apache.flink.util.OutputTag<X> outputTag, X value)
     
    org.apache.flink.api.common.state.KeyedStateStore
     
  • Method Details

    • currentProcessingTime

      long currentProcessingTime()
    • currentWatermark

      long currentWatermark()
    • windowState

      org.apache.flink.api.common.state.KeyedStateStore windowState()
    • globalState

      org.apache.flink.api.common.state.KeyedStateStore globalState()
    • output

      <X> void output(org.apache.flink.util.OutputTag<X> outputTag, X value)