org.apache.beam.repackaged.beam_sdks_java_core.org.apache.commons.lang3.tuple.MutableTriple.getRight()

Here are the examples of the java api org.apache.beam.repackaged.beam_sdks_java_core.org.apache.commons.lang3.tuple.MutableTriple.getRight() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

12 Source : MLHookTemplate.java
with Apache License 2.0
from ananas-analytics

@Override
public void run() {
    MutableTriple<Schema, Iterable<Row>, String> rows = MLRun();
    Create.Values<org.apache.beam.sdk.values.Row> MLRows = Create.of(rows.getMiddle());
    PCollection<Row> pCollection = PBegin.in(this.pipeline).apply(MLRows);
    pCollection.setRowSchema(rows.getLeft());
    this.stepRunner.setOutput(pCollection);
    this.stepRunner.setReader();
    this.stepRunner.setOutputMessage(rows.getRight());
}