Package eu.stratosphere.compiler.plan

Examples of eu.stratosphere.compiler.plan.SinkJoinerPlanNode


  }

  @Override
  public DualInputPlanNode instantiate(Channel in1, Channel in2, TwoInputNode node) {
    if (node instanceof SinkJoiner) {
      return new SinkJoinerPlanNode((SinkJoiner) node, in1, in2);
    } else {
      throw new CompilerException();
    }
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.compiler.plan.SinkJoinerPlanNode

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.