chainbuilder-retry

1.0.1 • Public • Published

chainbuilder-retry Build Status

A retry mixin for chainbuilder.

Installation npm install chainbuilder chainbuilder-retry --save

Usage

var chainBuilder = require('chainbuilder');

var myChain = chainBuilder({
  methods: {/* ... your methods ... */},
  mixins: [
    /* ... other mixins ... */
    require('chainbuilder-retry')({ attempts: 5, maxTimeout: 100 })
  ]
});

Example
Will retry the myMethodTwo().myMethodThree() chain up to two times until no error is received. myMethodTwo() will have access to the result of myMethodOne() (via previousResult()), and myMethodFour() will have access to the result of myMethodThree().

myChain()
  .myMethodOne()
  .$beginRetry({ attempts: 2 }}
    .myMethodTwo()
    .myMethodThree()
  .$endRetry()
  .myMethodFour()

Methods

require('chainbuilder-retry')(options)

Init the mixin with default options.

@param {Object} options (optional) default retry options.

$beginRetry(options)

Begin a retry block.

@param {Object} options (optional) retry options for this block.

$endRetry()

End a retry block.

Package Sidebar

Install

npm i chainbuilder-retry

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • andrewpmckenzie