Package org.apache.flink.table.api
Interface Executable
-
- All Known Subinterfaces:
CompiledPlan
,StatementSet
,StreamStatementSet
,Table
,TablePipeline
- All Known Implementing Classes:
StatementSetImpl
,StreamStatementSetImpl
,TableImpl
@PublicEvolving public interface Executable
Represents an artifact that can be executed.- See Also:
execute()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableResult
execute()
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_SYNC
for always synchronous execution.
-
-