geotrellis.engine

DataSource

Related Docs: object DataSource | package engine

trait DataSource[T, +V] extends OpSource[V]

DataSource[T, V]esents a data source that may be distributed across machines (logical data source) or loaded in memory on a specific machine.

Linear Supertypes
OpSource[V], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DataSource
  2. OpSource
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Self <: DataSource[T, V]

Abstract Value Members

  1. abstract def cached(implicit engine: Engine): Self

  2. abstract def distribute(cluster: Option[ActorRef]): Self

  3. abstract def elements(): Op[Seq[Op[T]]]

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 cachedOps(implicit engine: Engine): Op[Seq[Op[T]]]

  6. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def combine[T1 >: T, B](dss: Seq[DataSource[T1, _]], label: String)(f: (Seq[T1]) ⇒ B): SeqSource[B]

  8. def combine[T1 >: T, B](dss: Seq[DataSource[T1, _]])(f: (Seq[T1]) ⇒ B): SeqSource[B]

  9. def combine[B, C](ds: DataSource[B, _], label: String)(f: (T, B) ⇒ C): SeqSource[C]

  10. def combine[B, C](ds: DataSource[B, _])(f: (T, B) ⇒ C): SeqSource[C]

  11. def combineOp[T1 >: T, B](dss: Seq[DataSource[T1, _]], name: String)(f: (Seq[Op[T1]]) ⇒ Op[B]): SeqSource[B]

  12. def combineOp[B, C](ds: DataSource[B, _], name: String)(f: (Op[T], Op[B]) ⇒ Op[C]): SeqSource[C]

  13. def combineOp[T1 >: T, B](dss: Seq[DataSource[T1, _]])(f: (Seq[Op[T1]]) ⇒ Op[B]): SeqSource[B]

  14. def combineOp[B, C](ds: DataSource[B, _])(f: (Op[T], Op[B]) ⇒ Op[C]): SeqSource[C]

  15. def converge[B](f: (Seq[T]) ⇒ B): ValueSource[B]

  16. def converge(): ValueSource[V]

  17. def distribute(cluster: ActorRef): Self

  18. def distribute: Self

  19. def distributeOps(cluster: Option[ActorRef]): Op[Seq[Op[T]]]

  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def foldLeft[B](z: B)(folder: (B, T) ⇒ B): ValueSource[B]

  24. def foldRight[B](z: B)(folder: (T, B) ⇒ B): ValueSource[B]

  25. def get(implicit engine: Engine): V

    Definition Classes
    OpSource
  26. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. def map[B](f: (T) ⇒ B, label: String): SeqSource[B]

    apply a function to elements *

  30. def map[B](f: (T) ⇒ B): SeqSource[B]

    apply a function to elements *

  31. def mapOp[B](f: (Op[T]) ⇒ Op[B], name: String): SeqSource[B]

    apply a function to element operations *

  32. def mapOp[B](f: (Op[T]) ⇒ Op[B]): SeqSource[B]

    apply a function to element operations *

  33. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  36. def reduce[T1 >: T](reducer: (T1, T1) ⇒ T1): ValueSource[T1]

  37. def reduceLeft[T1 >: T](reducer: (T1, T) ⇒ T1): ValueSource[T1]

  38. def reduceRight[T1 >: T](reducer: (T, T1) ⇒ T1): ValueSource[T1]

  39. def run(implicit engine: Engine): OperationResult[V]

    Definition Classes
    OpSource
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. def toString(): String

    Definition Classes
    AnyRef → Any
  42. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def withConverge[B](f: (Seq[T]) ⇒ B): DataSource[T, B]

Inherited from OpSource[V]

Inherited from AnyRef

Inherited from Any

Ungrouped