Packages

trait TaskBuilder extends AnyRef

Constructs a com.here.platform.data.processing.java.driver.DriverTask by creating an com.here.platform.data.processing.driver.Executor and its applicable com.here.platform.data.processing.driver.modes.TaskModes.

Note

This is a Java friendly version of com.here.platform.data.processing.driver.TaskBuilder.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaskBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def build(): DriverTask

    Constructs a new com.here.platform.data.processing.java.driver.DriverTask with an com.here.platform.data.processing.driver.Executor that can run the compiler in one of the mode applicable.

    Constructs a new com.here.platform.data.processing.java.driver.DriverTask with an com.here.platform.data.processing.driver.Executor that can run the compiler in one of the mode applicable.

    returns

    a new com.here.platform.data.processing.java.driver.DriverTask.

  2. abstract def withDepCompiler[T](compiler: DepCompiler[T], clazz: Class[T], executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.DepCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  3. abstract def withDepCompiler[T](compiler: DepCompiler[T], clazz: Class[T]): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.DepCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    returns

    this TaskBuilder.

  4. abstract def withDirect1ToNCompiler[T](compiler: Direct1ToNCompiler[T], clazz: Class[T], executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.Direct1ToNCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation..

    clazz

    The class object for type T.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  5. abstract def withDirect1ToNCompiler[T](compiler: Direct1ToNCompiler[T], clazz: Class[T]): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.Direct1ToNCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation..

    clazz

    The class object for type T.

    returns

    this TaskBuilder.

  6. abstract def withDirectMToNCompiler[T](compiler: DirectMToNCompiler[T], clazz: Class[T], executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.DirectMToNCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  7. abstract def withDirectMToNCompiler[T](compiler: DirectMToNCompiler[T], clazz: Class[T]): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.DirectMToNCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    returns

    this TaskBuilder.

  8. abstract def withIncrementalDepCompiler[T, C](compiler: IncrementalDepCompiler[T, C], clazz: Class[T], executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.IncrementalDepCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    C

    The type of the opaque object carried over from updateDepGraph to compileIn.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  9. abstract def withIncrementalDepCompiler[T, C](compiler: IncrementalDepCompiler[T, C], clazz: Class[T]): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.IncrementalDepCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    C

    The type of the opaque object carried over from updateDepGraph to compileIn.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    returns

    this TaskBuilder.

  10. abstract def withMapGroupCompiler[T](compiler: MapGroupCompiler[T], clazz: Class[T], executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.MapGroupCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  11. abstract def withMapGroupCompiler[T](compiler: MapGroupCompiler[T], clazz: Class[T]): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.MapGroupCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    returns

    this TaskBuilder.

  12. abstract def withNonIncrementalCompiler(compiler: NonIncrementalCompiler, executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.NonIncrementalCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    compiler

    The compiler implementation.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  13. abstract def withNonIncrementalCompiler(compiler: NonIncrementalCompiler): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.NonIncrementalCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    compiler

    The compiler implementation.

    returns

    this TaskBuilder.

  14. abstract def withRefTreeCompiler[T](compiler: RefTreeCompiler[T], clazz: Class[T], executorId: String): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.RefTreeCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    executorId

    The executor ID.

    returns

    this TaskBuilder.

  15. abstract def withRefTreeCompiler[T](compiler: RefTreeCompiler[T], clazz: Class[T]): TaskBuilder

    Uses a com.here.platform.data.processing.java.compiler.RefTreeCompiler for the com.here.platform.data.processing.java.driver.DriverTask being built.

    T

    The type of values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    clazz

    The class object for type T.

    returns

    this TaskBuilder.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped