Interface AsyncStateWindowBuffer.Factory

All Superinterfaces:
Serializable
All Known Implementing Classes:
AsyncStateRecordsWindowBuffer.Factory
Enclosing interface:
AsyncStateWindowBuffer
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface AsyncStateWindowBuffer.Factory extends Serializable
A factory that creates a WindowBuffer with async state.
  • Method Details

    • create

      AsyncStateWindowBuffer create(Object operatorOwner, org.apache.flink.runtime.memory.MemoryManager memoryManager, long memorySize, org.apache.flink.api.common.functions.RuntimeContext runtimeContext, WindowTimerService<Long> timerService, AsyncStateKeyContext keyContext, WindowAsyncState<Long> windowState, boolean isEventTime, ZoneId shiftTimeZone) throws Exception
      Creates a WindowBuffer that buffers elements in memory before flushing.
      Parameters:
      operatorOwner - the owner of the operator
      memoryManager - the manager that governs memory by Flink framework
      memorySize - the managed memory size can be used by this operator
      runtimeContext - the current RuntimeContext
      timerService - the service to register event-time and processing-time timers
      keyContext - the state context to accessing states
      windowState - the window async state to flush buffered data into.
      isEventTime - indicates whether the operator works in event-time or processing-time mode, used for register corresponding timers.
      shiftTimeZone - the shift timezone of the window
      Throws:
      IOException - thrown if the buffer can't be opened
      Exception