c

bigglue.store.instances

BothDataStore

case class BothDataStore[DataL <: Identifiable[DataL], DataR <: Identifiable[DataR]](dStoreL: DataStore[DataL], dStoreR: DataStore[DataR]) extends DataStore[Either[DataL, DataR]] with Product with Serializable

Created by edmundlam on 8/10/17.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BothDataStore
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DataStore
  7. ConfigBuildsDataStore
  8. ConfigBuilds
  9. ConfigChecker
  10. Upstream
  11. AnyRef
  12. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BothDataStore(dStoreL: DataStore[DataL], dStoreR: DataStore[DataR])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to any2stringadd[BothDataStore[DataL, DataR]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BothDataStore[DataL, DataR], B)
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to ArrowAssoc[BothDataStore[DataL, DataR]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def add(data: Either[DataL, DataR]): Unit
    Definition Classes
    DataStore
  7. def all(): Seq[Either[DataL, DataR]]

    This gets everything from the data store.

    This gets everything from the data store.

    returns

    Every document that is stored in the data store.

    Definition Classes
    BothDataStoreDataStore
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def checkConfig(conf: PipeConfig): Unit

    Check that paths in configuration file relevant to host class are well-formed.

    Check that paths in configuration file relevant to host class are well-formed. Default does nothing.

    conf

    the config file to check

    Definition Classes
    ConfigChecker
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. val configOpt: Option[PipeConfig]
    Definition Classes
    ConfigBuilds
  12. def constructBuilder(config: PipeConfig): DataStoreBuilder
    Definition Classes
    ConfigBuildsDataStoreConfigBuilds
  13. val dStoreL: DataStore[DataL]
  14. val dStoreR: DataStore[DataR]
  15. def displayName(): String
    Definition Classes
    DataStore
  16. val downstreamConnectors: Seq[Connector[Either[DataL, DataR]]]
    Definition Classes
    Upstream
  17. def ensuring(cond: (BothDataStore[DataL, DataR]) ⇒ Boolean, msg: ⇒ Any): BothDataStore[DataL, DataR]
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to Ensuring[BothDataStore[DataL, DataR]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (BothDataStore[DataL, DataR]) ⇒ Boolean): BothDataStore[DataL, DataR]
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to Ensuring[BothDataStore[DataL, DataR]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: ⇒ Any): BothDataStore[DataL, DataR]
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to Ensuring[BothDataStore[DataL, DataR]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): BothDataStore[DataL, DataR]
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to Ensuring[BothDataStore[DataL, DataR]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def extract(): Seq[Either[DataL, DataR]]
    Definition Classes
    BothDataStoreDataStore
  23. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to StringFormat[BothDataStore[DataL, DataR]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  26. def getConfig(config: PipeConfig): PipeConfig
    Definition Classes
    ConfigBuilds
  27. def init(conf: PipeConfig): Unit
    Definition Classes
    DataStore
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. def iterator(): Iterator[Either[DataL, DataR]]

    This returns an iterator that iterates over the data store.

    This returns an iterator that iterates over the data store.

    returns

    An iterator that iterates over the data store until all documents have been processed.

    Definition Classes
    BothDataStoreDataStore
  30. var name: String
    Definition Classes
    DataStore
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  34. def partition(ds: Seq[Either[DataL, DataR]]): (Seq[DataL], Seq[DataR])
  35. def put(data: Either[DataL, DataR]): Unit
    Definition Classes
    DataStore
  36. def put(data: Seq[Either[DataL, DataR]]): Unit

    This puts the data into the data store using put_, and then sends the data down the pipeline if the data store is connected to the pipeline.

    This puts the data into the data store using put_, and then sends the data down the pipeline if the data store is connected to the pipeline.

    data

    The data that needs to be put into the data store.

    Definition Classes
    DataStore
  37. def put_(ds: Seq[Either[DataL, DataR]]): Unit

    This actually puts the data into the data store.

    This actually puts the data into the data store.

    Definition Classes
    BothDataStoreDataStore
  38. def registerConnector(connector: Connector[Either[DataL, DataR]]): Unit
    Definition Classes
    Upstream
  39. def setConfig(pipeConfig: PipeConfig): Unit
    Definition Classes
    ConfigBuilds
  40. def setName(newName: String): Unit
    Definition Classes
    DataStore
  41. def size(): Int
    Definition Classes
    BothDataStoreDataStore
  42. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  43. def terminate(): Unit
    Definition Classes
    DataStore
  44. def transmitDownstream(data: Either[DataL, DataR]): Unit
    Definition Classes
    Upstream
  45. def transmitDownstream(data: Seq[Either[DataL, DataR]]): Unit
    Definition Classes
    Upstream
  46. def transmitDownstreamModified(data: Either[DataL, DataR]): Unit
    Definition Classes
    Upstream
  47. def transmitDownstreamModified(data: Seq[Either[DataL, DataR]]): Unit
    Definition Classes
    Upstream
  48. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. def [B](y: B): (BothDataStore[DataL, DataR], B)
    Implicit
    This member is added by an implicit conversion from BothDataStore[DataL, DataR] to ArrowAssoc[BothDataStore[DataL, DataR]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from DataStore[Either[DataL, DataR]]

Inherited from ConfigBuildsDataStore

Inherited from ConfigBuilds[DataStoreBuilder]

Inherited from ConfigChecker

Inherited from Upstream[Either[DataL, DataR]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BothDataStore[DataL, DataR] to any2stringadd[BothDataStore[DataL, DataR]]

Inherited by implicit conversion StringFormat from BothDataStore[DataL, DataR] to StringFormat[BothDataStore[DataL, DataR]]

Inherited by implicit conversion Ensuring from BothDataStore[DataL, DataR] to Ensuring[BothDataStore[DataL, DataR]]

Inherited by implicit conversion ArrowAssoc from BothDataStore[DataL, DataR] to ArrowAssoc[BothDataStore[DataL, DataR]]

Ungrouped