Coder Social home page Coder Social logo

promise-pipeline-node's Introduction

Promise Pipeline

Easy to use pipeline executer manager

This is still under development, expect missing documentation!

Lines

Lines will be executed one by one

Lines example:

const cmd1 = () => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Pipe:cmd1");
    resolve();
  }, 1000);
});}

const cmd2 = () => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Pipe:cmd2");
    resolve();
  }, 100);
});}

new Line("Line1", [
  {name: "LineTest"},
  {name: "LineTest2"}
]);

Pipes

Piles will be executed in parallel

Pipe example:

const cmd1 = () => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Pipe:cmd1");
    resolve();
  }, 1000);
});}

const cmd2 = () => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Pipe:cmd2");
    resolve();
  }, 100);
});}

new Pipe("Pipe1", [
  {name: "PipeTest"},
  {name: "PipeTest2"}
]);

Common functions:

.run() -> Promise | Run all .run("name") -> Promise | Run one promise

Callbacks: .onResolve("name", callback); .onReject("name", callback);

Promise array { name: Name of promise func: Function to get promise argument: Argument to pass to func forwardReturnTo: Name of promise to forward aruments to }

forwardReturnTo argument format { forwarded: Forwared argument in object with forwarders name as key original: Argument set by "argument" }

Example:

const pipeline = require("promise-pipeline");

const cmd1 = () => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Pipe:cmd1");
    resolve();
  }, 1000);
});}

const cmd2 = (r) => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Pipe:cmd2 + arg: "+r);
    resolve();
  }, 100);
});}

const lcmd1 = () => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Line:lcmd1");
    resolve("This is from lcmd1");
  }, 1000);
});}

const lcmd2 = (r) => {return new Promise(function(resolve, reject) {
  setTimeout(function () {
    console.log("Line:lcmd2 + arg: "+r.forwarded["lcmd1"]);
    resolve();
  }, 300);
});}

const pipe = new pipeline.Pipe("pipe1", [
  {name: "pcmd1", func: cmd1},
  {name: "pcmd2", func: cmd2, argument: "hey"},
]);

const line = new pipeline.Line("line1", [
  {name: "lcmd1", func: lcmd1, forwardReturnTo: "lcmd2"},
  {name: "lcmd2", func: lcmd2},
]);

const mainLine = new pipeline.Pipe("mainline", [line, pipe]);
mainLine.onResolve("lcmd1",() => console.log("ON: lcmd1"))
mainLine.run().then((r) => console.log("done"));

promise-pipeline-node's People

Contributors

mariogrip avatar neothethird avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.