object
Actions
extends AnyRef
Type Members
-
case class
Delete
[T]
(record: T) extends ScopeAction[T] with Product with Serializable
-
case class
Save
[T]
(record: T) extends ScopeAction[T] with Product with Serializable
-
case class
UpdateAll
[T]
(vals: (String, ContentValue)*) extends ScopeAction[T] with Product with Serializable
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
DeleteAll
[T]
: DeleteAllAction[T]
-
def
Find
[T <: ManagedRecord]
(id: RecordId[T])(handler: (T) ⇒ Unit): FindAction[T]
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Actions that can be sent to RecordManagers and other Scopes.
Typical syntax is
scope ! action
(to have the action performed on a background thread) orscope.onThisThread(action)
(to have the action performed on the current thread).Note that any Scope (including a RecordManager) will also act as a
Notifier[IndexedSeq[T]]
(whereT
is the record type), and as such, can receive org.positronicnet.notification.Actions as well; this is where you can findFetch
,AddWatcher
and friends (as inRecordManager!Fetch{...}
).