Packages

class TaskBuilder extends AnyRef

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

Note

Use the factory method in com.here.platform.data.processing.driver.DriverBuilder to instantiate a 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

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 build(): DriverTask

    Constructs a new DriverTask with an Executor that can run the compiler in one of the applicable modes.

    Constructs a new DriverTask with an Executor that can run the compiler in one of the applicable modes.

    returns

    a new DriverTask.

  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  21. def withDepCompiler[T](compiler: DepCompiler[T], executorId: Id = id)(implicit arg0: ClassTag[T]): TaskBuilder.this.type

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

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

    T

    The type of the values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

  22. def withDirect1ToNCompiler[T](compiler: Direct1ToNCompiler[T], executorId: Id = id)(implicit arg0: ClassTag[T]): TaskBuilder.this.type

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

    T

    The type of the values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

  23. def withDirectMToNCompiler[T](compiler: DirectMToNCompiler[T], executorId: Id = id)(implicit arg0: ClassTag[T]): TaskBuilder.this.type

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

    T

    The type of the values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

  24. def withIncrementalDepCompiler[T, CarryOver](compiler: IncrementalDepCompiler[T, CarryOver], executorId: Id = id)(implicit arg0: ClassTag[T]): TaskBuilder.this.type

    Uses an com.here.platform.data.processing.compiler.IncrementalDepCompiler as the compiler for the DriverTask being built.

    T

    The type of the values passed between compileIn and compileOut.

    CarryOver

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

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

  25. def withMapGroupCompiler[T](compiler: MapGroupCompiler[T], executorId: Id = id)(implicit arg0: ClassTag[T]): TaskBuilder.this.type

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

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

    T

    The type of the values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

  26. def withNonIncrementalCompiler(compiler: NonIncrementalCompiler, executorId: Id = id): TaskBuilder.this.type

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

    Uses a com.here.platform.data.processing.compiler.NonIncrementalCompiler as the compiler for the DriverTask being built. This compiler only runs non-incrementally.

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

  27. def withRefTreeCompiler[T](compiler: RefTreeCompiler[T], executorId: Id = id)(implicit arg0: ClassTag[T]): TaskBuilder.this.type

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

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

    T

    The type of the values passed between compileIn and compileOut.

    compiler

    The compiler implementation.

    executorId

    Optional executor ID, taken from the driver task when not given.

    returns

    this TaskBuilder.

Inherited from AnyRef

Inherited from Any

Ungrouped