Owned

trait Owned[T <: Txn[T]] extends AuralOutput[T]
trait AuralOutput[T]
trait Observable[T, Update]
trait Disposable[T]
class Object
trait Matchable
class Any

Value members

Abstract methods

def play(n: NodeRef)(implicit tx: T): Unit
def stop()(implicit tx: T): Unit

Inherited methods

def bus: AudioBus
Inherited from
AuralOutput
def dispose()(implicit tx: T): Unit
Inherited from
Disposable
def key: String
Inherited from
AuralOutput
def react(fun: T => Update => Unit)(implicit 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
def view: Proc[T]

The peer view of the underlying process.

The peer view of the underlying process.

Inherited from
AuralOutput