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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<org.apache.flink.table.data.RowData>retrievePage(int page)Retrieves a page of a snapshotted result.TypedResult<Integer>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 Detail
-
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.
-
-