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.
- Alphabetic
- By Inheritance
- TaskBuilder
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
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.
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
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.
-
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.
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.
-
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.
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.
-
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.
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.
-
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.
-
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.
-
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.