Package org.apache.flink.table.api
Interface Executable
-
- All Known Subinterfaces:
CompiledPlan,StatementSet,Table,TablePipeline
- All Known Implementing Classes:
StatementSetImpl,TableImpl
@PublicEvolving public interface ExecutableRepresents an artifact that can be executed.- See Also:
execute()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableResultexecute()Executes this object.
-
-
-
Method Detail
-
execute
TableResult execute()
Executes this object.By default, all DML operations are executed asynchronously. Use
TableResult.await()orTableResult.getJobClient()to monitor the execution. SetTableConfigOptions.TABLE_DML_SYNCfor always synchronous execution.
-
-