Package org.apache.flink.compiler.operators

Examples of org.apache.flink.compiler.operators.CoGroupWithSolutionSetSecondDescriptor


  public void makeCoGroupWithSolutionSet(int solutionsetInputIndex) {
    OperatorDescriptorDual op;
    if (solutionsetInputIndex == 0) {
      op = new CoGroupWithSolutionSetFirstDescriptor(keys1, keys2);
    } else if (solutionsetInputIndex == 1) {
      op = new CoGroupWithSolutionSetSecondDescriptor(keys1, keys2);
    } else {
      throw new IllegalArgumentException();
    }
    this.dataProperties = Collections.<OperatorDescriptorDual>singletonList(op);
  }
View Full Code Here

TOP

Related Classes of org.apache.flink.compiler.operators.CoGroupWithSolutionSetSecondDescriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.