Sha256: b30a32557a40861c384f5a6a65113dbc89a4f9fedef79f88d8fba880018f7224

Contents?: true

Size: 1.32 KB

Versions: 49

Compression:

Stored size: 1.32 KB

Contents

import { Operator } from '../Operator';
import { IScheduler } from '../Scheduler';
import { Subscriber } from '../Subscriber';
import { Observable } from '../Observable';
import { TeardownLogic } from '../Subscription';
import { SubscribeOnObservable } from '../observable/SubscribeOnObservable';
import { MonoTypeOperatorFunction } from '../interfaces';

/**
 * Asynchronously subscribes Observers to this Observable on the specified IScheduler.
 *
 * <img src="./img/subscribeOn.png" width="100%">
 *
 * @param {Scheduler} scheduler - The IScheduler to perform subscription actions on.
 * @return {Observable<T>} The source Observable modified so that its subscriptions happen on the specified IScheduler.
 .
 * @method subscribeOn
 * @owner Observable
 */
export function subscribeOn<T>(scheduler: IScheduler, delay: number = 0): MonoTypeOperatorFunction<T> {
  return function subscribeOnOperatorFunction(source: Observable<T>): Observable<T> {
    return source.lift(new SubscribeOnOperator<T>(scheduler, delay));
  };
}

class SubscribeOnOperator<T> implements Operator<T, T> {
  constructor(private scheduler: IScheduler,
              private delay: number) {
  }
  call(subscriber: Subscriber<T>, source: any): TeardownLogic {
    return new SubscribeOnObservable(
      source, this.delay, this.scheduler
    ).subscribe(subscriber);
  }
}

Version data entries

49 entries across 49 versions & 4 rubygems

Version Path
govuk_publishing_components-16.21.0 node_modules/rxjs/src/operators/subscribeOn.ts
govuk_publishing_components-16.20.1 node_modules/rxjs/src/operators/subscribeOn.ts
govuk_publishing_components-16.20.0 node_modules/rxjs/src/operators/subscribeOn.ts
govuk_publishing_components-16.19.0 node_modules/rxjs/src/operators/subscribeOn.ts
govuk_publishing_components-16.18.0 node_modules/rxjs/src/operators/subscribeOn.ts
govuk_publishing_components-16.17.0 node_modules/rxjs/src/operators/subscribeOn.ts
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/inquirer/node_modules/rxjs/src/operators/subscribeOn.ts
locomotivecms-3.4.0 app/javascript/node_modules/rxjs/src/operators/subscribeOn.ts
dragonfly_puppeteer-0.1.0 node_modules/rxjs/src/operators/subscribeOn.ts