Class VoidDataSetCallback

java.lang.Object
org.apache.camel.component.flink.VoidDataSetCallback
All Implemented Interfaces:
DataSetCallback<Void>

@Deprecated(since="4.16.0") public abstract class VoidDataSetCallback extends Object implements DataSetCallback<Void>
Deprecated.
The DataSet API is deprecated since Flink 1.12. Use the DataStream API with bounded streams instead. See the Flink migration guide for details on migrating from DataSet to DataStream API. This class will be maintained for backward compatibility but may be removed in future versions.
Void implementation of DataSetCallback for operations that don't return results.
  • Constructor Details

    • VoidDataSetCallback

      public VoidDataSetCallback()
      Deprecated.
  • Method Details

    • doOnDataSet

      public abstract void doOnDataSet(org.apache.flink.api.java.DataSet ds, Object... payloads)
      Deprecated.
    • onDataSet

      public Void onDataSet(org.apache.flink.api.java.DataSet ds, Object... payloads)
      Deprecated.
      Specified by:
      onDataSet in interface DataSetCallback<Void>