Interface DoFn.OutputReceiver<T>

Enclosing class:
DoFn<InputT extends @Nullable Object,OutputT extends @Nullable Object>

public static interface DoFn.OutputReceiver<T>
Receives values of the given type.
  • Method Details

    • output

      void output(T output)
    • outputWithTimestamp

      void outputWithTimestamp(T output, Instant timestamp)
    • outputWindowedValue

      default void outputWindowedValue(T output, Instant timestamp, Collection<? extends BoundedWindow> windows, PaneInfo paneInfo)