Package org.apache.flink.api.common.operators

Examples of org.apache.flink.api.common.operators.GenericDataSourceBase


    if (name.length() > 100) {
      name = name.substring(0, 100);
    }
   
    @SuppressWarnings({ "unchecked", "rawtypes" })
    GenericDataSourceBase<OUT, ?> source = new GenericDataSourceBase(this.inputFormat,
        new OperatorInformation<OUT>(getType()), name);
    source.setDegreeOfParallelism(dop);
   
    return source;
  }
View Full Code Here

TOP

Related Classes of org.apache.flink.api.common.operators.GenericDataSourceBase

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.