Interface MaterializedResult

All Superinterfaces:
DynamicResult
All Known Implementing Classes:
MaterializedCollectBatchResult, MaterializedCollectResultBase, MaterializedCollectStreamResult

public interface MaterializedResult extends DynamicResult
A result that is materialized and can be viewed by navigating through a snapshot.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<org.apache.flink.table.data.RowData>
    retrievePage(int page)
    Retrieves a page of a snapshotted result.
    snapshot(int pageSize)
    Takes a snapshot of the current table and returns the number of pages for navigating through the snapshot.

    Methods inherited from interface org.apache.flink.table.client.gateway.result.DynamicResult

    close
  • Method Details

    • snapshot

      TypedResult<Integer> snapshot(int pageSize)
      Takes a snapshot of the current table and returns the number of pages for navigating through the snapshot.
    • retrievePage

      List<org.apache.flink.table.data.RowData> retrievePage(int page)
      Retrieves a page of a snapshotted result.