object changed extends Changed
- Definition Classes
- LongOpImpl → SingleEventNode → Publisher → ExprLike
- Alphabetic
- By Inheritance
- changed
- Changed
- SingleEvent
- Event
- Writable
- EventLike
- Observable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def --->(sink: Event[T, Any])(implicit tx: T): Unit
Connects the given selector to this event.
- final def -/->(sink: Event[T, Any])(implicit tx: T): Unit
Disconnects the given selector from this event.
- def equals(that: Any): Boolean
- Definition Classes
- Event → AnyRef → Any
- def hashCode(): Int
- Definition Classes
- Event → AnyRef → Any
- def node: Node[T]
- Definition Classes
- Changed → Event
- def pullUpdate(pull: Pull[T])(implicit tx: T): Option[Change[AudioCue]]
Involves this event in the pull-phase of event delivery.
Involves this event in the pull-phase of event delivery. The event should check the source of the originally fired event, and if it identifies itself with that source, cast the
update
to the appropriate typeA
and wrap it in an instance ofSome
. If this event is not the source, it should invokepull
on any appropriate event source feeding this event.- returns
the
update
as seen through this event, orNone
if the event did not originate from this part of the dependency graph or was absorbed by a filtering function
- final def react(fun: (T) => (Change[AudioCue]) => Unit)(implicit tx: T): Disposable[T]
Registers a live observer with this observable.
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 opaqueDisposable
instance, which may be used to remove the observer eventually (through thedispose
method).- Definition Classes
- Event → Observable
- final def write(out: DataOutput): Unit