Packages

abstract class Store[Doc <: Document[Doc], Model <: DocumentModel[Doc]] extends Initializable with Disposable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Store
  2. Disposable
  3. Initializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Store(name: String, path: Option[Path], model: Model, lightDB: LightDB, storeManager: StoreManager)

Type Members

  1. abstract type TX <: Transaction[Doc, Model]

Abstract Value Members

  1. abstract def createTransaction(parent: Option[Transaction[Doc, Model]]): Task[TX]
    Attributes
    protected
  2. abstract def storeMode: StoreMode[Doc, Model]

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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. lazy val dispose: Task[Unit]

    Calls doDispose() exactly one time.

    Calls doDispose() exactly one time. Safe to call multiple times.

    Definition Classes
    Disposable
  7. def doDispose(): Task[Unit]
    Attributes
    protected
    Definition Classes
    StoreDisposable
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. lazy val fields: List[Field[Doc, _]]
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  12. lazy val hasSpatial: Task[Boolean]
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  14. lazy val idField: UniqueIndex[Doc, Id[Doc]]
  15. lazy val init: Task[Unit]

    Calls initialize() exactly one time.

    Calls initialize() exactly one time. Safe to call multiple times.

    Definition Classes
    Initializable
  16. def initialize(): Task[Unit]

    Define initialization functionality here, but never call directly.

    Define initialization functionality here, but never call directly.

    Attributes
    protected
    Definition Classes
    StoreInitializable
  17. def isDisposes: Boolean
    Definition Classes
    Disposable
  18. def isInitialized: Boolean
    Definition Classes
    Initializable
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. val lightDB: LightDB
  21. lazy val lock: LockManager[Id[Doc], Doc]
  22. val model: Model
  23. val name: String
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  27. def optimize(): Task[Unit]

    Optimizes this store.

    Optimizes this store. This allows the implementation an opportunity to clean up, optimize, etc. to improve the performance of the store.

  28. val path: Option[Path]
  29. def reIndex(doc: Doc): Task[Boolean]
  30. def reIndex(): Task[Boolean]
  31. val storeManager: StoreManager
  32. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  33. lazy val t: Transactionless[Doc, Model]
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def verify(): Task[Boolean]
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. object transaction
  40. object trigger extends StoreTriggers[Doc, Model]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Disposable

Inherited from Initializable

Inherited from AnyRef

Inherited from Any

Ungrouped