Class/Object

com.geteit.events

Signal

Related Docs: object Signal | package events

Permalink

class Signal[A] extends Observable[SignalListener] with EventSource[A]

Self Type
Signal[A]
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Signal
  2. EventSource
  3. Observable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Signal(value: Option[A] = None)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply(subscriber: Subscriber[A])(implicit eventContext: EventContext): Subscription

    Permalink
    Definition Classes
    SignalEventSource
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clear(): Unit

    Permalink
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def collect[B](pf: PartialFunction[A, B]): Signal[B]

    Permalink
  9. def combine[B, C](s: Signal[B])(f: (A, B) ⇒ C): Signal[C]

    Permalink
  10. final def currentValue: Option[A]

    Permalink
  11. def disableAutowiring(): Unit

    Permalink
    Definition Classes
    Observable
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. val executionContext: Option[ExecutionContext]

    Permalink
    Definition Classes
    EventSource
  15. def filter(f: (A) ⇒ Boolean): Signal[A]

    Permalink
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def flatMap[B](f: (A) ⇒ Signal[B]): Signal[B]

    Permalink
  18. def get: A

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hasSubscribers: Boolean

    Permalink
    Definition Classes
    Observable
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. def head(implicit ev: EventContext): CancellableFuture[A]

    Permalink
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def map[B](f: (A) ⇒ B): Signal[B]

    Permalink
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def on(ec: ExecutionContext)(subscriber: Subscriber[A])(implicit eventContext: EventContext): Subscription

    Permalink
    Definition Classes
    SignalEventSource
  29. lazy val onChanged: EventStream[A] with SignalListener

    Permalink
  30. def onUnwire(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    SignalObservable
  31. def onWire(): Unit

    Permalink

    If this signal is computed from sources that change their value via a side effect (such as signals) and is not informed of those changes while unwired (e.g.

    If this signal is computed from sources that change their value via a side effect (such as signals) and is not informed of those changes while unwired (e.g. because this signal removes itself from the sources' children lists in #onUnwire), it is mandatory to update/recompute this signal's value from the sources in #onWire, since a dispatch always happens after #onWire. This is true even if the source values themselves did not change, for the recomputation in itself may rely on side effects (e.g. ZMessaging => SomeValueFromTheDatabase).

    This also implies that a signal should never #dispatch in #onWire because that will happen anyway immediately afterwards in #subscribe.

    Attributes
    protected
    Definition Classes
    SignalObservable
  32. def orElse(fallback: Signal[A]): Signal[A]

    Permalink
  33. def publish(value: A, currentContext: ExecutionContext): Unit

    Permalink
    Attributes
    protected
  34. def publish(value: A): Unit

    Permalink
    Attributes
    protected
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  36. def throttle(delay: FiniteDuration): Signal[A]

    Permalink
  37. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  38. def unsubscribeAll(): Unit

    Permalink
    Definition Classes
    Observable
  39. var value: Option[A]

    Permalink
  40. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def zip[B](s: Signal[B]): Signal[(A, B)]

    Permalink

Inherited from EventSource[A]

Inherited from Observable[SignalListener]

Inherited from AnyRef

Inherited from Any

Ungrouped