abstract-data-manager

1.0.3 • Public • Published

abstract-data-manager

An abstract manager which can be useful for broadcasting lazily-loaded data.

Usage

Extend the AbstractDataManager class and override async getData() to customize where data is fetched from.

Consumers call addListener to receive updates on the underlying data.

Features

Allows multiple consumers to get data updates over time.

The manager handles simultaneous requests by locking and preventing multiple calls.

The first listener will trigger an update which makes this a lazily-loaded approach.

Details

Consumers should call removeListener when they no longer need updates.

May optionally override destruct() to handle destruction.

May optionally override clear() to handle fetch cancelling. (Recommended)

For Developer

Remember to npm run build before deploying.

/abstract-data-manager/

    Package Sidebar

    Install

    npm i abstract-data-manager

    Weekly Downloads

    0

    Version

    1.0.3

    License

    Apache-2.0

    Unpacked Size

    16.9 kB

    Total Files

    5

    Last publish

    Collaborators

    • wtesler