1.0.1 • Published 5 years ago

@aboutweb/promise-routine v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
5 years ago

promise-routine

A promised base routine that builds up trunks which can be executed in a syncrounized fashion.

Usage:

import * as routine from "@aboutweb/promise-routine";

let trunk = routine([
  /*
    if you don't return a Promise
    and the function itself is not async
    next will get called internally with the same args
  */
  function(ctx) {
    ctx.setup = () => {
      //...
    }
  }
  function(ctx, next) {
    //init...

    return next(ctx).then(() => {
      //bubble up
      ctx.setup();
    });
  },
  async function(ctx, next) {
    ctx.value = true

    await sleep(100);
    await next(ctx);

  }
])

let ctx = {};

trunk(ctx).then((ctx) => {
  //all finised
});
1.0.1

5 years ago

1.0.0

6 years ago