1.0.22 • Published 7 years ago

taskbuffer v1.0.22

Weekly downloads
12
License
MIT
Repository
gitlab
Last release
7 years ago

taskbuffer

flexible task management. TypeScript ready!

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Install

npm install taskbuffer --save

Concepts

class Task

  • A Task in its most simple form is a function that is executed when the task runs.
  • A Task can have a preTask and an afterTask (those are run before or after the main function whenever the task is called)
  • A Task can be buffered. That means it can be called multiple times in a very short time. However execution happens in line: meaning execution of the task's main function is on halt until the previous task call has finished. You can set bufferMax number, which is the max number of buffered task calls. Any additional calls will then be truncated
  • Task.trigger() and Task.triggerBuffered() always return a Promise which is fullfilled once the related task call has completed.
  • Task.triggered() is an Observable stream that emits events every time a task call is called and every time a call is completed.
  • Task is compatible to gulp streams.

class TaskChain

  • TaskChain extends Task.
  • Multiple Tasks can be combined in a bigger task using a TaskChain.
  • While the tasks are async in themselve, TaskChain runs Tasks serialized (one after the other)
  • that means that tasks can rely on each other and

class TaskParallel

  • TaskParallel extends Task.
  • like TaskChain, however tasks run in parallel
  • Tasks cannot rely on each other.

Usage

We highly recommend TypeScript as this module supports TypeScript intellisense.

import * as taskbuffer from "taskbuffer";

myTask = new taskbuffer.Task({
  preTask: someOtherTask // optional, don't worry loops are prevented
  afterTask: someOtherTask // optional, don't worry loops are prevented
  name:"myTask1",
  taskFunction:() => {
    // do some stuff and return promise
    // pass on any data through promise resolution
    // Use TypeScript for better understanding and code completion
  }
})

For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH

repo-footer

1.0.22

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.1

8 years ago

0.0.0

8 years ago