notification-queue

A JavaScript implement of NotificationQueue and NotificationCenter.

Usage no npm install needed!

<script type="module">
  import notificationQueue from 'https://cdn.skypack.dev/notification-queue';
</script>

README

A JavaScript implement of NotificationQueue and NotificationCenter.

Installation

FOSSA Status

npm install notification-queue

Usage

NotificationCenter

import { NotificationCenter } from 'notification-queue';

const center = NotificationCenter.default;
const token = center.addObserver('update', null, (notification) => {
    console.log('Update:', notification.data);
});

center.post('update', null, 'Hello world!');

// Output "Update: Hello world!".

center.removeObserver(token);

NotificationQueue

import { Notification, NotificationCenter, NotificationQueue, PostingStyle } from 'notification-queue';

const center = NotificationCenter.default;
const queue = NotificationQueue.default;

const token = center.addObserver('update', null, (notification) => {
    console.log(notification.data);
});

queue.enqueue(Notification.init('update', null, 'X'), PostingStyle.asap);
queue.enqueue(Notification.init('update', null, 'Y'), PostingStyle.asap);

// Output "X".

API

See documents

License

FOSSA Status