Packages

abstract class Store[Doc <: Document[Doc], Model <: DocumentModel[Doc]] extends AnyRef

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

Instance Constructors

  1. new Store(name: String, model: Model)

Abstract Value Members

  1. abstract def aggregate(query: AggregateQuery[Doc, Model])(implicit transaction: Transaction[Doc]): Iterator[MaterializedAggregate[Doc, Model]]
  2. abstract def aggregateCount(query: AggregateQuery[Doc, Model])(implicit transaction: Transaction[Doc]): Int
  3. abstract def count(implicit transaction: Transaction[Doc]): Int
  4. abstract def delete[V](field: UniqueIndex[Doc, V], value: V)(implicit transaction: Transaction[Doc]): Boolean
  5. abstract def dispose(): Unit
  6. abstract def doSearch[V](query: Query[Doc, Model], conversion: Conversion[Doc, V])(implicit transaction: Transaction[Doc]): SearchResults[Doc, Model, V]
  7. abstract def exists(id: Id[Doc])(implicit transaction: Transaction[Doc]): Boolean
  8. abstract def get[V](field: UniqueIndex[Doc, V], value: V)(implicit transaction: Transaction[Doc]): Option[Doc]
  9. abstract def insert(doc: Doc)(implicit transaction: Transaction[Doc]): Unit
  10. abstract def iterator(implicit transaction: Transaction[Doc]): Iterator[Doc]
  11. abstract def prepareTransaction(transaction: Transaction[Doc]): Unit
  12. abstract def storeMode: StoreMode[Doc, Model]
  13. abstract def truncate()(implicit transaction: Transaction[Doc]): Int
  14. abstract def upsert(doc: Doc)(implicit transaction: Transaction[Doc]): Unit

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. def apply(id: Id[Doc])(implicit transaction: Transaction[Doc]): Doc
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  7. final def createTransaction(): Transaction[Doc]
  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, _]]
    Attributes
    protected
  11. def fromString(string: String): Doc
    Attributes
    protected
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. lazy val hasSpatial: Boolean
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  15. def id(doc: Doc): Id[Doc]
    Attributes
    protected
  16. lazy val idField: UniqueIndex[Doc, Id[Doc]]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def jsonIterator(implicit transaction: Transaction[Doc]): Iterator[Json]
  19. lazy val lock: LockManager[Id[Doc], Doc]
  20. def modify(id: Id[Doc], establishLock: Boolean = true, deleteOnNone: Boolean = false)(f: (Option[Doc]) => Option[Doc])(implicit transaction: Transaction[Doc]): Option[Doc]
  21. val name: String
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  25. def reIndex(): Boolean
  26. def releaseTransaction(transaction: Transaction[Doc]): Unit
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(doc: Doc): String
    Attributes
    protected
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def verify(): Boolean
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. object transaction
  35. object trigger extends CollectionTriggers[Doc]

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