Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

backoff-rxjs

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backoff-rxjs

A collection of helpful RxJS operators to deal with backoff strategies (like exponential backoff)

  • 0.0.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11K
decreased by-22.48%
Maintainers
1
Weekly downloads
 
Created
Source

backoff-rxjs

A collection of helpful RxJS operators to deal with backoff strategies (like exponential backoff)

intervalBackoff

Basic interval backoff

intervalBackoff works similiarly to interval except that it doubles the delay between emissions every time.

nametypeattirbutedescription
confignumber | IntervalBackoffConfigrequiredCan take number as initial interval or a config with initial interval, optional max Interval and optional backoff delay function (exponential by default)

interval is especially useful for periodic polls that are reset whenever user activity is detected:

fromEvent(document, 'mousemove').pipe(

    // There could be many mousemoves, we'd want to sample only
    // with certain frequency
    sampleTime(LOAD_INTERVAL_MS),

    // Start immediately
    startWith(null),

    // Resetting exponential interval
    switchMapTo(intervalBackoff({initialInterval: LOAD_INTERVAL_MS, maxInterval: MAX_INTERVAL_MS})),
  );

retryBackoff

Retry Backoff Exponential Image

nametypeattirbutedescription
confignumber | RetryBackoffConfigrequiredCan take number as initial interval or a config with initial interval, optional max Interval, optional max number of retry attempts, optional function to cancel reties and optional backoff delay function (exponential by default)

Keywords

FAQs

Package last updated on 28 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc