1.0.1 • Published 8 years ago

chainbuilder-retry v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

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.

1.0.1

8 years ago