Trait

de.sciss.lucre.stm.impl.InMemoryImpl

TxnMixin

Related Doc: package InMemoryImpl

Permalink

trait TxnMixin[S <: InMemoryLike[S]] extends BasicTxnImpl[S] with InMemoryLike.Txn[S]

Self Type
TxnMixin[S] with S.Tx
Linear Supertypes
InMemoryLike.Txn[S], BasicTxnImpl[S], Txn[S], TxnLike, Executor[S], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TxnMixin
  2. Txn
  3. BasicTxnImpl
  4. Txn
  5. TxnLike
  6. Executor
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def inMemory: Sys.I.Tx

    Permalink
    Definition Classes
    Txn
  2. abstract def peer: InTxn

    Permalink

    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
  3. abstract val system: S

    Permalink
    Definition Classes
    Executor

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def afterCommit(code: ⇒ Unit): Unit

    Permalink

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

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

    Definition Classes
    BasicTxnImplTxnLike
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def attrMap(obj: Obj[S]): AttrMap[S]

    Permalink
    Definition Classes
    TxnMixinTxn
  7. def beforeCommit(fun: (S.Tx) ⇒ Unit): Unit

    Permalink
    Definition Classes
    BasicTxnImplTxn
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def newBooleanVar(id: Id[S], init: Boolean): InMemoryLike.Var[S, Boolean]

    Permalink
    Definition Classes
    TxnMixin → Executor
  17. final def newHandle[A](value: A)(implicit serializer: Serializer[S.Tx, Unit, A]): Source[S.Tx, A]

    Permalink
    Definition Classes
    TxnMixin → Executor
  18. final def newId(): Id[S]

    Permalink
    Definition Classes
    TxnMixin → Executor
  19. final def newInMemoryIdMap[A]: IdentifierMap[Id[S], S.Tx, A]

    Permalink
    Definition Classes
    TxnMixin → Executor
  20. def newInMemoryMap[K, V]: RefMap[S, K, V]

    Permalink
    Definition Classes
    BasicTxnImpl → Executor
  21. def newInMemorySet[A]: RefSet[S, A]

    Permalink
    Definition Classes
    BasicTxnImpl → Executor
  22. final def newIntVar(id: Id[S], init: Int): InMemoryLike.Var[S, Int]

    Permalink
    Definition Classes
    TxnMixin → Executor
  23. final def newLongVar(id: Id[S], init: Long): InMemoryLike.Var[S, Long]

    Permalink
    Definition Classes
    TxnMixin → Executor
  24. def newRef[A](init: A): Ref[S.Tx, A]

    Permalink
    Definition Classes
    BasicTxnImpl → Executor
  25. final def newVar[A](id: Id[S], init: A)(implicit ser: Serializer[S.Tx, Unit, A]): InMemoryLike.Var[S, A]

    Permalink
    Definition Classes
    TxnMixin → Executor
  26. final def newVarArray[A](size: Int): Array[InMemoryLike.Var[S, A]]

    Permalink
    Definition Classes
    TxnMixin → Executor
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. def readBooleanVar(id: Id[S], in: DataInput): InMemoryLike.Var[S, Boolean]

    Permalink
    Definition Classes
    TxnMixin → Executor
  30. def readId(in: DataInput, acc: Unit): Id[S]

    Permalink
    Definition Classes
    TxnMixin → Executor
  31. def readIntVar(id: Id[S], in: DataInput): InMemoryLike.Var[S, Int]

    Permalink
    Definition Classes
    TxnMixin → Executor
  32. def readLongVar(id: Id[S], in: DataInput): InMemoryLike.Var[S, Long]

    Permalink
    Definition Classes
    TxnMixin → Executor
  33. def readVar[A](id: Id[S], in: DataInput)(implicit ser: Serializer[S.Tx, Unit, A]): InMemoryLike.Var[S, A]

    Permalink
    Definition Classes
    TxnMixin → Executor
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from InMemoryLike.Txn[S]

Inherited from BasicTxnImpl[S]

Inherited from Txn[S]

Inherited from TxnLike

Inherited from Executor[S]

Inherited from AnyRef

Inherited from Any

Ungrouped