Packages

object Executor

Executor factory, to create an Executor corresponding to each compiler pattern

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

Type Members

  1. type Id = String

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. def apply[T](id: Id, compiler: RefTreeCompiler[T], context: DriverContext)(implicit arg0: ClassTag[T]): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.RefTreeCompiler.

    T

    The type of the values passed between compileIn and compileOut.

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  5. def apply[T](id: Id, compiler: MapGroupCompiler[T], context: DriverContext)(implicit arg0: ClassTag[T]): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.MapGroupCompiler.

    T

    The type of the values passed between compileIn and compileOut.

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  6. def apply[T, CarryOver](id: Id, compiler: IncrementalDepCompiler[T, CarryOver], context: DriverContext)(implicit arg0: ClassTag[T]): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.IncrementalDepCompiler.

    T

    The type of the values passed between compileIn and compileOut.

    CarryOver

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

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  7. def apply[T](id: Id, compiler: DepCompiler[T], context: DriverContext)(implicit arg0: ClassTag[T]): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.DepCompiler.

    T

    The type of the values passed between compileIn and compileOut.

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  8. def apply[T](id: Id, compiler: DirectMToNCompiler[T], context: DriverContext)(implicit arg0: ClassTag[T]): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.DirectMToNCompiler.

    T

    The type of the values passed between compileIn and compileOut.

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  9. def apply[T](id: Id, compiler: Direct1ToNCompiler[T], context: DriverContext)(implicit arg0: ClassTag[T]): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.Direct1ToNCompiler.

    T

    The type of the values passed between compileIn and compileOut.

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  10. def apply(id: Id, compiler: NonIncrementalCompiler, context: DriverContext): Executor

    Creates an Executor for a com.here.platform.data.processing.compiler.NonIncrementalCompiler.

    id

    The unique identifier of the Executor.

    compiler

    The compiler implementation.

    context

    The context in which the Executor runs.

    returns

    the new Executor that can run the passed compiler.

  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped