Package eu.stratosphere.pact.runtime.udf

Examples of eu.stratosphere.pact.runtime.udf.RuntimeUDFContext


    this.output = initOutputs(this, this.userCodeClassLoader, this.config, this.chainedTasks, this.eventualOutputs);
  }

  public RuntimeUDFContext createRuntimeContext(String taskName) {
    Environment env = getEnvironment();
    return new RuntimeUDFContext(taskName, env.getCurrentNumberOfSubtasks(), env.getIndexInSubtaskGroup(), env.getCopyTask());
  }
View Full Code Here


   
    if (parent instanceof RegularPactTask) {
      this.udfContext = ((RegularPactTask<?, ?>) parent).createRuntimeContext(taskName);
    } else {
      Environment env = parent.getEnvironment();
      this.udfContext = new RuntimeUDFContext(taskName, env.getCurrentNumberOfSubtasks(), env.getIndexInSubtaskGroup(), env.getCopyTask());
    }

    setup(parent);
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.pact.runtime.udf.RuntimeUDFContext

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.