Package

rxscalajs

subscription

Permalink

package subscription

Visibility
  1. Public
  2. All

Type Members

  1. trait AnonymousSubscription extends Object

    Permalink
    Annotations
    @RawJSType() @native()
  2. trait CompletionObserver[T] extends Object

    Permalink
    Annotations
    @RawJSType() @native()
  3. trait ErrorObserver[T] extends Object

    Permalink
    Annotations
    @RawJSType() @native()
  4. class InnerSubscriber[T, R] extends Subscriber[R]

    Permalink
    Annotations
    @RawJSType() @native()
  5. trait NextObserver[T] extends Object

    Permalink
    Annotations
    @RawJSType() @native()
  6. trait ObserverFacade[T] extends Object with NextObserver[T] with ErrorObserver[T] with CompletionObserver[T]

    Permalink

    Provides a mechanism for receiving push-based notifications.

    Provides a mechanism for receiving push-based notifications.

    After an Observer calls an rxscalajs.Observable's subscribe method, the Observable calls the Observer's onNext method to provide notifications. A well-behaved Observable will call an Observer's onCompleted or onError methods exactly once.

    Annotations
    @RawJSType() @native()
  7. class OuterSubscriber[T, R] extends Subscriber[T]

    Permalink
    Annotations
    @RawJSType() @native()
  8. class SubjectSubscription extends Subscription

    Permalink
    Annotations
    @RawJSType() @native()
  9. class Subscriber[T] extends Subscription

    Permalink
    Annotations
    @RawJSType() @native()
  10. class Subscription extends Object with AnonymousSubscription

    Permalink
    Annotations
    @RawJSType() @native()

Value Members

  1. object Subscriber extends Object

    Permalink
    Annotations
    @native()
  2. object Subscription extends Object

    Permalink
    Annotations
    @native() @JSName( "Rx.Subscription" )

Ungrouped