Packages

trait Txn extends lucre.synth.Sys.Txn[Durable] with lucre.stm.DurableLike.Txn[Durable]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Txn
  2. Txn
  3. Txn
  4. Txn
  5. Txn
  6. TxnLike
  7. Executor
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def addMessage(resource: Resource, m: Message with Send, dependencies: Seq[Resource] = Nil): Unit
    Definition Classes
    Txn
  2. abstract def afterCommit(code: ⇒ Unit): Unit

    Registers a thunk to be executed after the transaction successfully committed.

    Registers a thunk to be executed after the transaction successfully committed.

    Definition Classes
    TxnLike
  3. abstract def attrMap(obj: Obj[Durable]): AttrMap[Durable]
    Definition Classes
    Txn
  4. abstract def beforeCommit(fun: (Tx) ⇒ Unit): Unit
    Definition Classes
    Txn
  5. abstract def inMemory: lucre.synth.InMemory.Txn
    Definition Classes
    TxnTxn
  6. abstract def newBooleanVar(id: Durable.Id, init: Boolean): Durable.Var[Boolean]
    Definition Classes
    Executor
  7. abstract def newCachedIntVar(init: Int): Var[Tx, Int]
    Definition Classes
    Txn
  8. abstract def newCachedLongVar(init: Long): Var[Tx, Long]
    Definition Classes
    Txn
  9. abstract def newCachedVar[A](init: A)(implicit serializer: Serializer[Tx, Unit, A]): Var[Tx, A]
    Definition Classes
    Txn
  10. abstract def newHandle[A](value: A)(implicit serializer: Serializer[Tx, Durable.Acc, A]): Source[Tx, A]

    Creates a handle (in-memory) to refresh a stale version of an object, assuming that the future transaction is issued from the same cursor that is used to create the handle, except for potentially having advanced.

    Creates a handle (in-memory) to refresh a stale version of an object, assuming that the future transaction is issued from the same cursor that is used to create the handle, except for potentially having advanced. This is a mechanism that can be used in live views to gain valid access to a referenced object (e.g. self access).

    value

    the object which will be refreshed when calling get on the returned handle

    serializer

    used to write and freshly read the object

    returns

    the handle

    Definition Classes
    Executor
  11. abstract def newId(): Durable.Id
    Definition Classes
    Executor
  12. abstract def newInMemoryIdMap[A]: IdentifierMap[Durable.Id, Tx, A]

    Creates a new in-memory transactional map for storing and retrieving values based on a mutable's identifier as key.

    Creates a new in-memory transactional map for storing and retrieving values based on a mutable's identifier as key. If a system is confluently persistent, the get operation will find the most recent key that matches the search key. Objects are not serialized but kept live in memory.

    Id maps can be used by observing views to look up associated view meta data even though they may be presented with a more recent access path of the model peer (e.g. when a recent event is fired and observed).

    A

    the value type in the map

    Definition Classes
    Executor
  13. abstract def newInMemoryMap[A, B]: RefMap[Durable, A, B]
    Definition Classes
    Executor
  14. abstract def newInMemorySet[A]: RefSet[Durable, A]
    Definition Classes
    Executor
  15. abstract def newIntVar(id: Durable.Id, init: Int): Durable.Var[Int]
    Definition Classes
    Executor
  16. abstract def newLongVar(id: Durable.Id, init: Long): Durable.Var[Long]
    Definition Classes
    Executor
  17. abstract def newRef[A](init: A): Ref[Tx, A]
    Definition Classes
    Executor
  18. abstract def newVar[A](id: Durable.Id, init: A)(implicit serializer: Serializer[Tx, Durable.Acc, A]): Durable.Var[A]
    Definition Classes
    Executor
  19. abstract def newVarArray[A](size: Int): Array[Durable.Var[A]]
    Definition Classes
    Executor
  20. abstract def peer: InTxn

    Every transaction has a plain Scala-STM transaction as a peer.

    Every transaction has a plain Scala-STM transaction as a peer. This comes handy for setting up custom things like TxnLocal, TMap, or calling into the hooks of concurrent.stm.Txn. It is also needed when re-wrapping the transaction of one system into another.

    Definition Classes
    TxnLike
  21. abstract def readBooleanVar(id: Durable.Id, in: DataInput): Durable.Var[Boolean]
    Definition Classes
    Executor
  22. abstract def readCachedIntVar(in: DataInput): Var[Tx, Int]
    Definition Classes
    Txn
  23. abstract def readCachedLongVar(in: DataInput): Var[Tx, Long]
    Definition Classes
    Txn
  24. abstract def readCachedVar[A](in: DataInput)(implicit serializer: Serializer[Tx, Unit, A]): Var[Tx, A]
    Definition Classes
    Txn
  25. abstract def readId(in: DataInput, acc: Durable.Acc): Durable.Id
    Definition Classes
    Executor
  26. abstract def readIntVar(id: Durable.Id, in: DataInput): Durable.Var[Int]
    Definition Classes
    Executor
  27. abstract def readLongVar(id: Durable.Id, in: DataInput): Durable.Var[Long]
    Definition Classes
    Executor
  28. abstract def readVar[A](id: Durable.Id, in: DataInput)(implicit serializer: Serializer[Tx, Durable.Acc, A]): Durable.Var[A]
    Definition Classes
    Executor
  29. abstract val system: Durable

    Back link to the underlying system.

    Back link to the underlying system.

    Definition Classes
    Executor
  30. abstract def systemTimeNanoSec: Long

    Or zero if not scheduled.

    Or zero if not scheduled.

    Definition Classes
    Txn

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from lucre.synth.Sys.Txn[Durable]

Inherited from lucre.synth.Txn

Inherited from lucre.stm.Txn[Durable]

Inherited from TxnLike

Inherited from Executor[Durable]

Inherited from AnyRef

Inherited from Any

Ungrouped