Package eu.stratosphere.compiler.operators

Examples of eu.stratosphere.compiler.operators.NoOpDescriptor


  // --------------------------------------------------------------------------------------------
  //                             Properties and Optimization
  // --------------------------------------------------------------------------------------------
 
  protected List<OperatorDescriptorSingle> getPossibleProperties() {
    return Collections.<OperatorDescriptorSingle>singletonList(new NoOpDescriptor());
  }
View Full Code Here


* The optimizer's internal representation of a <i>No Operation</i> node.
*/
public class NoOpNode extends UnaryOperatorNode {
 
  public NoOpNode() {
    super("No Op", new FieldSet(), new NoOpDescriptor());
  }
View Full Code Here

  public NoOpNode() {
    super("No Op", new FieldSet(), new NoOpDescriptor());
  }
 
  public NoOpNode(String name) {
    super(name, new FieldSet(), new NoOpDescriptor());
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.compiler.operators.NoOpDescriptor

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.