Package org.apache.flink.api.common.functions.util

Examples of org.apache.flink.api.common.functions.util.NoOpFunction


public class PartitionOperatorBase<IN> extends SingleInputOperator<IN, IN, NoOpFunction> {
 
  private final PartitionMethod partitionMethod;
 
  public PartitionOperatorBase(UnaryOperatorInformation<IN, IN> operatorInfo, PartitionMethod pMethod, int[] keys, String name) {
    super(new UserCodeObjectWrapper<NoOpFunction>(new NoOpFunction()), operatorInfo, keys, name);
    this.partitionMethod = pMethod;
  }
View Full Code Here


    super(new UserCodeObjectWrapper<NoOpFunction>(new NoOpFunction()), operatorInfo, keys, name);
    this.partitionMethod = pMethod;
  }
 
  public PartitionOperatorBase(UnaryOperatorInformation<IN, IN> operatorInfo, PartitionMethod pMethod, String name) {
    super(new UserCodeObjectWrapper<NoOpFunction>(new NoOpFunction()), operatorInfo, name);
    this.partitionMethod = pMethod;
  }
View Full Code Here

TOP

Related Classes of org.apache.flink.api.common.functions.util.NoOpFunction

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.