public final class TableSourceBatchOp extends BatchOperator<TableSourceBatchOp>
ML_ENVIRONMENT_ID| 构造器和说明 |
|---|
TableSourceBatchOp(org.apache.flink.table.api.Table table) |
| 限定符和类型 | 方法和说明 |
|---|---|
TableSourceBatchOp |
linkFrom(BatchOperator<?>... inputs)
Link from others
BatchOperator. |
checkAndGetFirst, fromTable, linkcheckMinOpSize, checkOpSize, getColNames, getColTypes, getOutput, getParams, getSchema, getSideOutputColNames, getSideOutputColTypes, getSideOutputs, setOutput, setSideOutputs, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetMLEnvironmentId, setMLEnvironmentIdpublic TableSourceBatchOp linkFrom(BatchOperator<?>... inputs)
BatchOperatorBatchOperator.
Link this object to BatchOperator using the BatchOperators as its input.
For example:
BatchOperator a = ...;
BatchOperator b = ...;
BatchOperator c = ...;
BatchOperator d = c.linkFrom(a, b)
The d in the above code is the same instance as BatchOperator c
which takes both a and b as its input.
note: It is not recommended to linkFrom itself or linkFrom the same group inputs twice.
linkFrom 在类中 BatchOperator<TableSourceBatchOp>inputs - the linked inputsCopyright © 2014–2021 The Apache Software Foundation. All rights reserved.