c

bigglue.store

IdDataMap

abstract class IdDataMap[Data <: Identifiable[Data]] extends DataMap[Identity[Data], Data]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IdDataMap
  2. DataMap
  3. DataStore
  4. ConfigBuildsDataStore
  5. ConfigBuilds
  6. ConfigChecker
  7. Upstream
  8. AnyRef
  9. 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 IdDataMap()

Abstract Value Members

  1. abstract def all(): Seq[Data]

    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
    DataStore
  2. abstract def contains(key: Identity[Data]): Boolean
    Definition Classes
    DataMap
  3. abstract def extract(): Seq[Data]
    Definition Classes
    DataStore
  4. abstract def get(key: Identity[Data]): Option[Data]
    Definition Classes
    DataMap
  5. abstract def iterator(): Iterator[Data]

    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
    DataStore
  6. abstract def put_(key: Identity[Data], data: Data): Unit
    Definition Classes
    DataMap
  7. abstract def put_(data: Seq[Data]): Unit

    This actually puts the data into the data store.

    This actually puts the data into the data store.

    data

    The data to be put into the data store.

    Definition Classes
    DataStore
  8. abstract def remove(key: Identity[Data]): Unit
    Definition Classes
    DataMap
  9. abstract def remove(keys: Seq[Identity[Data]]): Unit
    Definition Classes
    DataMap
  10. abstract def size(): Int
    Definition Classes
    DataStore

Concrete 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 IdDataMap[Data] to any2stringadd[IdDataMap[Data]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (IdDataMap[Data], B)
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to ArrowAssoc[IdDataMap[Data]] 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: Data): Unit
    Definition Classes
    DataStore
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. 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
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val configOpt: Option[PipeConfig]
    Definition Classes
    ConfigBuilds
  11. def constructBuilder(config: PipeConfig): DataStoreBuilder
    Definition Classes
    ConfigBuildsDataStoreConfigBuilds
  12. def displayName(): String
    Definition Classes
    DataStore
  13. val downstreamConnectors: Seq[Connector[Data]]
    Definition Classes
    Upstream
  14. def ensuring(cond: (IdDataMap[Data]) ⇒ Boolean, msg: ⇒ Any): IdDataMap[Data]
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to Ensuring[IdDataMap[Data]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (IdDataMap[Data]) ⇒ Boolean): IdDataMap[Data]
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to Ensuring[IdDataMap[Data]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): IdDataMap[Data]
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to Ensuring[IdDataMap[Data]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): IdDataMap[Data]
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to Ensuring[IdDataMap[Data]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to StringFormat[IdDataMap[Data]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  23. def getConfig(config: PipeConfig): PipeConfig
    Definition Classes
    ConfigBuilds
  24. def getOrElse(key: Identity[Data], default: Data): Data
    Definition Classes
    DataMap
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  26. def init(conf: PipeConfig): Unit
    Definition Classes
    DataStore
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. var name: String
    Definition Classes
    DataStore
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  32. def put(key: Identity[Data], data: Data): Unit
    Definition Classes
    DataMap
  33. def put(data: Data): Unit
    Definition Classes
    DataStore
  34. def put(data: Seq[Data]): 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
  35. def registerConnector(connector: Connector[Data]): Unit
    Definition Classes
    Upstream
  36. def setConfig(pipeConfig: PipeConfig): Unit
    Definition Classes
    ConfigBuilds
  37. def setName(newName: String): Unit
    Definition Classes
    DataStore
  38. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  39. def terminate(): Unit
    Definition Classes
    DataStore
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def transmitDownstream(data: Data): Unit
    Definition Classes
    Upstream
  42. def transmitDownstream(data: Seq[Data]): Unit
    Definition Classes
    Upstream
  43. def transmitDownstreamModified(data: Data): Unit
    Definition Classes
    Upstream
  44. def transmitDownstreamModified(data: Seq[Data]): Unit
    Definition Classes
    Upstream
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def [B](y: B): (IdDataMap[Data], B)
    Implicit
    This member is added by an implicit conversion from IdDataMap[Data] to ArrowAssoc[IdDataMap[Data]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from DataMap[Identity[Data], Data]

Inherited from DataStore[Data]

Inherited from ConfigBuildsDataStore

Inherited from ConfigBuilds[DataStoreBuilder]

Inherited from ConfigChecker

Inherited from Upstream[Data]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from IdDataMap[Data] to any2stringadd[IdDataMap[Data]]

Inherited by implicit conversion StringFormat from IdDataMap[Data] to StringFormat[IdDataMap[Data]]

Inherited by implicit conversion Ensuring from IdDataMap[Data] to Ensuring[IdDataMap[Data]]

Inherited by implicit conversion ArrowAssoc from IdDataMap[Data] to ArrowAssoc[IdDataMap[Data]]

Ungrouped