Code Monkey home page Code Monkey logo

async-sequence's Introduction

async-sequence

async-sequence contains PromiseSequencer a utility class that enables you to execute promises sequentially with concurrency and retry capabilities. It empowers you to manage promise execution order, concurrency, and handles retries and logging seamlessly.

Installation

Install async-sequence using your preferred package manager:

# Using npm
npm install @triyanox/async-sequence

# Using Bun
bun add @triyanox/async-sequence

# Using Yarn
yarn add @triyanox/async-sequence

# Using PNPM
pnpm add @triyanox/async-sequence

Usage

import createPromiseSequencer from '@triyanox/async-sequence';

// Example usage
const promiseSequencer = createPromiseSequencer(
  // add your promises here
  [() => Promise.resolve('foo'), () => Promise.reject('bar')],
  {
    // the maximum number of promises that can run at the same time
    concurrency: 2,
    // the maximum number of times a task can be retried
    retryAttempts: 3,
    // the delay between retries
    retryDelay: 1000,
    // a logger that logs the status of the PromiseSequencer
    logger: {
      log: (level, message) => {
        console.log(`[${level.toUpperCase()}] ${message}`);
      },
    },
    // callbacks for when a task is completed, failed or retried
    onTaskCompleted: (result) => {
      console.log(`Task completed with result: ${result()}`);
    },
    onTaskFailed: (error) => {
      console.log(`Task failed with error: ${error()}`);
    },
    onTaskRetried: (task) => {
      console.log(`Task retried: ${task}`);
    },
    // whether to disable logs
    disableLogs: false,
  },
);

// use a custom generator
const promiseSequencer = createPromiseSequencer(
  (function* custom() {
    yield () => Promise.resolve('foo');
    yield () => Promise.resolve('bar');
    yield () => Promise.reject(new Error('baz'));
  })(),
);

// start the PromiseSequencer
promiseSequencer.start();

// get the sequencer results
const results = await promiseSequencer.getResults();

// stop the PromiseSequencer
promiseSequencer.stop();

API

Enum: LogLevel

Represents different log levels for logging messages.

  • ERROR: Error log level.
  • INFO: Information log level.
  • DEBUG: Debug log level.

Interface: Logger

A logger interface to implement custom logging behavior.

  • log(level: LogLevel, message: string): void: Logs a message at the specified log level.

Interface: PromiseSequencerOptions<T>

Options for configuring the PromiseSequencer.

  • promiseGenerator: A generator that yields promises.
  • concurrency (optional): The number of promises to run concurrently. Default: 1.
  • retryAttempts (optional): The number of times to retry a failed task. Default: 0.
  • retryDelay (optional): The delay in milliseconds between retries. Default: 0.
  • logger (optional): A logger instance for custom logging. Default: console.
  • disableLogs (optional): Whether to disable logging. Default: false.
  • onTaskCompleted (optional): A callback for task completion.
  • onTaskFailed (optional): A callback for task failure.
  • onTaskRetried (optional): A callback for task retries.
  • throwOnErrors (optional): Whether to throw an error when a task fails. Default: false.

Class: PromiseSequencer<T>

A class for executing promises sequentially with concurrency and retry capabilities.

  • constructor(options: PromiseSequencerOptions<T>): Creates a new PromiseSequencer instance.
  • start(): Promise<boolean>: Starts executing promises.
  • stop(): Stops the PromiseSequencer.
  • getQueue(): (() => Promise<T>)[]: Returns the current queue of tasks.
  • getRunningTasks(): (() => Promise<T>)[]: Returns the current running tasks.
  • getCompletedTasks(): (() => Promise<T>)[]: Returns the completed tasks.
  • getFailedTasks(): (() => Promise<T>)[]: Returns the failed tasks.
  • getRetryTasks(): (() => Promise<T>)[]: Returns the tasks that are currently being retried.
  • getResults(): Promise<T[]>: Returns the results of the PromiseSequencer if the throwOnErrors option is set to false it will return null for the failed tasks if not it will throw an error.
  • setCurrentConcurrency(concurrency: number): void: Sets the current concurrency.

Function: createPromiseSequencer<T>

Creates a new PromiseSequencer instance.

  • promiseGenerator: A generator that yields promises.
  • options (optional): Options for configuring the PromiseSequencer.

License

This project is licensed under the MIT License - see the LICENSE file for details.

async-sequence's People

Contributors

triyanox avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 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.