AuralOutput

trait AuralOutput[T <: Txn[T]] extends Disposable[T] with Observable[T, Update]

An AuralOutput is the aural representation of a Proc.Output. It associates that output with a bus to which the signal is routed.

Companion
object
trait Observable[T, Update]
trait Disposable[T]
class Object
trait Matchable
class Any
trait Owned[T]

Value members

Abstract methods

def bus: AudioBus
def key: String
def view: Proc[T]

The peer view of the underlying process.

The peer view of the underlying process.

Inherited methods

def dispose()(implicit tx: T): Unit
Inherited from
Disposable
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