trait Executor[S <: Base[S]] extends AnyRef
- Alphabetic
- By Inheritance
- Executor
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
- abstract def newBooleanVar(id: S.Id, init: Boolean): S.Var[Boolean]
-
abstract
def
newHandle[A](value: A)(implicit serializer: Serializer[S.Tx, S.Acc, A]): Source[S.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
geton the returned handle- serializer
used to write and freshly read the object
- returns
the handle
- abstract def newId(): S.Id
-
abstract
def
newInMemoryIdMap[A]: IdentifierMap[S.Id, S.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
getoperation 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
- abstract def newInMemoryMap[A, B]: RefMap[S, A, B]
- abstract def newInMemorySet[A]: RefSet[S, A]
- abstract def newIntVar(id: S.Id, init: Int): S.Var[Int]
- abstract def newLongVar(id: S.Id, init: Long): S.Var[Long]
- abstract def newRef[A](init: A): Ref[S.Tx, A]
- abstract def newVar[A](id: S.Id, init: A)(implicit serializer: Serializer[S.Tx, S.Acc, A]): S.Var[A]
- abstract def newVarArray[A](size: Int): Array[S.Var[A]]
- abstract def readBooleanVar(id: S.Id, in: DataInput): S.Var[Boolean]
- abstract def readId(in: DataInput, acc: S.Acc): S.Id
- abstract def readIntVar(id: S.Id, in: DataInput): S.Var[Int]
- abstract def readLongVar(id: S.Id, in: DataInput): S.Var[Long]
- abstract def readVar[A](id: S.Id, in: DataInput)(implicit serializer: Serializer[S.Tx, S.Acc, A]): S.Var[A]
-
abstract
val
system: S
Back link to the underlying system.
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )