Interface DataSetCallback<T>

Type Parameters:
T - results type
All Known Implementing Classes:
AnnotatedDataSetCallback, ConvertingDataSetCallback, VoidDataSetCallback

@Deprecated(since="4.16.0") public interface DataSetCallback<T>
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.
Generic block of code with parameters which can be executed against DataSet and return results.
  • Method Summary

    Modifier and Type
    Method
    Description
    onDataSet(org.apache.flink.api.java.DataSet ds, Object... payloads)
    Deprecated.
     
  • Method Details

    • onDataSet

      T onDataSet(org.apache.flink.api.java.DataSet ds, Object... payloads)
      Deprecated.