Package

geotrellis.engine

actors

Permalink

package actors

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

Type Members

  1. type Callback[+T] = (List[Any]) ⇒ StepOutput[T]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  2. case class EngineActor(engine: Engine) extends Actor with Product with Serializable

    Permalink

    Actor responsible for dispatching and executing operations.

    Actor responsible for dispatching and executing operations.

    This is a long-running actor which expects to receive two kinds of messages:

    1. Requests made by the outside world to run operations. 2. Requests made by other actors to asynchronously evaluate arguments.

    In the first case, we dispatch the message to a pool of workers). In the second case we will spin up a Step Aggregator actor who will handle the message.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  3. case class EngineContext(externalId: String, layerLoader: LayerLoader, engineRef: ActorRef) extends Product with Serializable

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

  4. case class Run(op: Operation[_]) extends Product with Serializable

    Permalink

    External message to compute the given operation and return result to sender.

    External message to compute the given operation and return result to sender. Run child operations using default local dispatcher.

    Annotations
    @deprecated
    Deprecated

    (Since version Geotrellis Version 0.10) geotrellis-engine has been deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped