Runner

trait Runner[T <: Txn[T]] extends ViewBase[T] with IControl[T]
Companion
object
trait IControl[T]
trait Form[T]
trait ViewBase[T]
trait Disposable[T]
trait Observable[T, State]
class Object
trait Matchable
class Any
trait Peer[T]
trait Mutable[T]
trait Internal[T]
class PeerImpl[T]

Value members

Abstract methods

def prepare(attr: Attr[T])(tx: T): Unit
def run(tx: T): Unit

Inherited methods

def dispose(tx: T): Unit
Inherited from
Disposable
def initControl(tx: T): Unit
Inherited from
IControl
def react(fun: T => State => Unit)(tx: T): Disposable[T]

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

Inherited from
Observable
final def reactNow(fun: T => State => Unit)(tx: T): Disposable[T]

Like react, but also invokes the function with the current state immediately.

Like react, but also invokes the function with the current state immediately.

Inherited from
ViewBase
def state(tx: T): State
Inherited from
ViewBase
def stop(tx: T): Unit
Inherited from
ViewBase

Implicits

Implicits

implicit val universe: Universe[T]