Packages

c

lightdb

LightDB

abstract class LightDB extends AnyRef

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

Instance Constructors

  1. new LightDB()

Abstract Value Members

  1. abstract def createStore(name: String): Store
    Attributes
    protected
  2. abstract def directory: Path
  3. abstract def upgrades: List[DatabaseUpgrade]
  4. abstract def userCollections: List[AbstractCollection[_]]

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. lazy val appliedUpgrades: StoredValue[Set[String]]
    Attributes
    protected
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. lazy val backingStore: Collection[KeyValue]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. def collection[D <: Document[D]](name: String, model: DocumentModel[D], defaultCommitMode: CommitMode = CommitMode.Manual, atomic: Boolean = true)(implicit rw: RW[D]): AbstractCollection[D]
    Attributes
    protected
  9. final lazy val collections: List[AbstractCollection[_]]
  10. def commit(): IO[Unit]
  11. def createStoreInternal(name: String): Store
    Attributes
    protected[lightdb]
  12. lazy val databaseInitialized: StoredValue[Boolean]
    Attributes
    protected
  13. def disableExtraneousLogging: Boolean

    Disables extraneous logging from underlying implementations.

    Disables extraneous logging from underlying implementations. Defaults to true.

    Attributes
    protected
  14. def dispose(): IO[Unit]
  15. def disposed: Boolean
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  20. def init(truncate: Boolean = false): IO[Unit]
  21. def initialized: Boolean
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. def truncate(): IO[Unit]
  29. def update(): IO[Unit]
  30. def updateFrequency: FiniteDuration

    How frequently to run background updates.

    How frequently to run background updates. Defaults to every 30 seconds.

    Attributes
    protected
  31. def verifyIndexIntegrityOnStartup: Boolean

    If true, will automatically check the number of indexes vs the number of store entries and if there's a mismatch, the index will be truncated and rebuilt at startup.

    If true, will automatically check the number of indexes vs the number of store entries and if there's a mismatch, the index will be truncated and rebuilt at startup. Defaults to true.

    Attributes
    protected
  32. def verifyInitialized(): Unit
    Attributes
    protected[lightdb]
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. object stored

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 AnyRef

Inherited from Any

Ungrouped