public final class TableSourceStreamOp extends StreamOperator<TableSourceStreamOp>
ML_ENVIRONMENT_ID| 构造器和说明 |
|---|
TableSourceStreamOp(org.apache.flink.table.api.Table table) |
| 限定符和类型 | 方法和说明 |
|---|---|
TableSourceStreamOp |
linkFrom(StreamOperator<?>... inputs)
Link from others
StreamOperator. |
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 TableSourceStreamOp linkFrom(StreamOperator<?>... inputs)
StreamOperatorStreamOperator.
Link this object to StreamOperator using the StreamOperators as its input.
For example:
StreamOperator a = ...;
StreamOperator b = ...;
StreamOperator c = ...;
StreamOperator d = c.linkFrom(a, b)
The d in the above code is the same instance as StreamOperator 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 在类中 StreamOperator<TableSourceStreamOp>inputs - the linked inputsCopyright © 2014–2021 The Apache Software Foundation. All rights reserved.