2.0.6 • Published 2 months ago

ts-wait v2.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Wait Library

The Wait library provides a convenient way to implement polling mechanisms with customizable timeouts and intervals in TypeScript.

Installation

You can install the Wait library via npm:

npm install dbudim/ts-wait

Usage

import { Wait } from 'dbudim/ts-wait';

await new Wait<Document>(() => client.documents.getDocument(id))
        .pollingEvery(1000)
        .withTimeout(20000)
        .until(document => document.status === 'COMPLETED')       

API

Wait<T> A class that represents the Wait library.

Constructor new Wait(call: () => Promise<T>): Creates a new Wait instance with the provided asynchronous function.

Methods:

withTimeout(timeout: number): Wait<T>: Sets the timeout for waiting in milliseconds (default: 30000)

pollingEvery(interval: number): Wait<T>: Sets the polling interval in milliseconds (default: 1000).

withMessage(message: string): Wait<T>: Sets a custom error message.

async until(condition: (it: T) => boolean): Promise<T>: Waits until the provided condition function returns true or the timeout is reached. Returns the result when the condition is met.

Contributions

Contributions are welcome! Feel free to submit issues or pull requests.

License

This library is licensed under the MIT License. See the LICENSE file for details.

1.0.19

2 months ago

1.1.0

2 months ago

1.0.18

2 months ago

1.0.17

2 months ago

1.0.16

2 months ago

1.0.0-rc

2 months ago

2.0.3

2 months ago

2.0.2

2 months ago

2.0.5

2 months ago

2.0.4

2 months ago

2.0.6

2 months ago

1.0.0-rc-2

2 months ago

1.0.22

2 months ago

1.0.0-rc-3

2 months ago

1.0.21

2 months ago

1.0.0-rc-1

2 months ago

1.0.26

2 months ago

1.0.25

2 months ago

2.0.1

2 months ago

1.0.24

2 months ago

2.0.0

2 months ago

1.0.23

2 months ago

1.0.27

2 months ago

1.0.0-some-1

2 months ago

2.0.6-rc-1

2 months ago

1.0.0-some-2

2 months ago

1.0.0-some-3

2 months ago

1.0.0-rcd-3

2 months ago

1.0.15

2 months ago

1.0.14

2 months ago

1.0.13

2 months ago

1.0.12

2 months ago

1.0.11

2 months ago

1.0.10

2 months ago

1.0.9

2 months ago

1.0.8

2 months ago

1.0.7

2 months ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.4

2 months ago

1.0.3

2 months ago

1.0.2

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago