Interface DoFn.OutputReceiver<T>

All Known Implementing Classes:
TestOutputReceiver
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

    • builder

      OutputBuilder<T> builder(T value)
    • output

      default void output(T value)
    • outputWithTimestamp

      default void outputWithTimestamp(T value, Instant timestamp)
    • outputWindowedValue

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