Messages

trait Messages[Tx] extends Observable[Tx, List[Message]]
trait Observable[Tx, List[Message]]
class Object
trait Matchable
class Any
object messages
object messages

Value members

Abstract methods

def current(tx: Tx): List[Message]

Inherited methods

def react(fun: Tx => List[Message] => Unit)(tx: Tx): Disposable[Tx]

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