Packages

trait Transaction[Doc <: Document[Doc], Model <: DocumentModel[Doc]] extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Transaction
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def _close: Task[Unit]
    Attributes
    protected
  2. abstract def _commit: Task[Unit]
    Attributes
    protected
  3. abstract def _count: Task[Int]
    Attributes
    protected
  4. abstract def _delete[V](index: UniqueIndex[Doc, V], value: V): Task[Boolean]
    Attributes
    protected
  5. abstract def _exists(id: Id[Doc]): Task[Boolean]
    Attributes
    protected
  6. abstract def _get[V](index: UniqueIndex[Doc, V], value: V): Task[Option[Doc]]
    Attributes
    protected
  7. abstract def _insert(doc: Doc): Task[Doc]
    Attributes
    protected
  8. abstract def _rollback: Task[Unit]
    Attributes
    protected
  9. abstract def _upsert(doc: Doc): Task[Doc]
    Attributes
    protected
  10. abstract def jsonStream: Stream[Json]
  11. abstract def parent: Option[Transaction[Doc, Model]]
  12. abstract def store: Store[Doc, Model]
  13. abstract def truncate: Task[Int]

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[V](f: (Model) => (UniqueIndex[Doc, V], V)): Task[Doc]
  5. def apply(id: Id[Doc]): Task[Doc]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. final def close: Task[Unit]
  9. final def commit: Task[Unit]
  10. final def count: Task[Int]
  11. def delete(id: Id[Doc]): Task[Boolean]
  12. final def delete[V](f: (Model) => (UniqueIndex[Doc, V], V)): Task[Boolean]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. final def exists(id: Id[Doc]): Task[Boolean]
  16. def fromString(string: String): Doc
    Attributes
    protected
  17. def get(id: Id[Doc]): Task[Option[Doc]]
  18. def get[V](f: (Model) => (UniqueIndex[Doc, V], V)): Task[Option[Doc]]
  19. def getAll(ids: Seq[Id[Doc]]): Stream[Doc]
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  21. def getOrCreate(id: Id[Doc], create: => Doc, establishLock: Boolean = true): Task[Doc]
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  23. def insert(docs: Seq[Doc]): Task[Seq[Doc]]
  24. final def insert(doc: Doc): Task[Doc]
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def list: Task[List[Doc]]
  27. def modify(id: Id[Doc], establishLock: Boolean = true, deleteOnNone: Boolean = false)(f: Forge[Option[Doc], Option[Doc]]): Task[Option[Doc]]
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  31. final def rollback: Task[Unit]
  32. def stream: Stream[Doc]
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toJson(string: String): Json
    Attributes
    protected
  35. def toString(doc: Doc): String
    Attributes
    protected
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. def upsert(docs: Seq[Doc]): Task[Seq[Doc]]
  38. final def upsert(doc: Doc): Task[Doc]
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

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