rxjs-compat

  • Version 6.6.7
  • Published
  • 2.6 MB
  • No dependencies
  • Apache-2.0 license

Install

npm i rxjs-compat
yarn add rxjs-compat
pnpm add rxjs-compat

Overview

[![CircleCI](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x.svg?style=svg)](https://circleci.com/gh/ReactiveX/rxjs/tree/6.x) [![npm version](https://badge.fury.io/js/%40reactivex%2Frxjs.svg)](http://badge.fury.io/js/%40reactivex%2Frxjs) [![Join the chat

Index

Variables

variable operators

const operators: any;

    variable Scheduler

    let Scheduler: {
    asap: SchedulerLike;
    queue: SchedulerLike;
    animationFrame: SchedulerLike;
    async: SchedulerLike;
    };
    • {Object} Rx.Scheduler {Scheduler} queue Schedules on a queue in the current event frame (trampoline scheduler). Use this for iteration operations. {Scheduler} asap Schedules on the micro task queue, which is the same queue used for promises. Basically after the current job, but before the next job. Use this for asynchronous conversions. {Scheduler} async Schedules work with setInterval. Use this for time-based operations. {Scheduler} animationFrame Schedules work with requestAnimationFrame. Use this for synchronizing with the platform's painting

    variable Symbol

    let Symbol: {
    rxSubscriber: string | symbol;
    observable: string | symbol;
    iterator: symbol;
    };
    • {Object} Rx.Symbol {Symbol|string} rxSubscriber A symbol to use as a property name to retrieve an "Rx safe" Observer from an object. "Rx safety" can be defined as an object that has all of the traits of an Rx Subscriber, including the ability to add and remove subscriptions to the subscription chain and guarantees involving event triggering (can't "next" after unsubscription, etc). {Symbol|string} observable A symbol to use as a property name to retrieve an Observable as defined by the [ECMAScript "Observable" spec](https://github.com/zenparsing/es-observable). {Symbol|string} iterator The ES6 symbol to use as a property name to retrieve an iterator from an object.

    Package Files (1)

    Dependencies (0)

    No dependencies.

    Dev Dependencies (0)

    No dev dependencies.

    Peer Dependencies (0)

    No peer dependencies.

    Badge

    To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

    You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/rxjs-compat.

    • Markdown
      [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/rxjs-compat)
    • HTML
      <a href="https://www.jsdocs.io/package/rxjs-compat"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>