All Projects → bredele → emitter-queue

bredele / emitter-queue

Licence: other
😴 Queue emitter events

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to emitter-queue

zeroin
The only Event Emitter you need
Stars: ✭ 19 (+18.75%)
Mutual labels:  event-emitter, publish-subscribe
express-bull-es6
An example setup with docker-compose, Redis, bull queue and ES6.
Stars: ✭ 67 (+318.75%)
Mutual labels:  queue
DEPRECATED-data-structures
A collection of powerful data structures
Stars: ✭ 2,648 (+16450%)
Mutual labels:  queue
zmq
ZeroMQ based distributed patterns
Stars: ✭ 27 (+68.75%)
Mutual labels:  queue
common
Common classes used across prooph components
Stars: ✭ 83 (+418.75%)
Mutual labels:  event-emitter
PySiQ
A Python Simple Queue system for your apps
Stars: ✭ 23 (+43.75%)
Mutual labels:  queue
joobq
JoobQ is a fast, efficient asynchronous reliable job queue and job scheduler library processing. Jobs are submitted to a job queue, where they reside until they are able to be scheduled to run in a computing environment.
Stars: ✭ 26 (+62.5%)
Mutual labels:  queue
Data-Structures
Algorithmic Problems Solutions -- hash table code featured in geeksforgeeks
Stars: ✭ 44 (+175%)
Mutual labels:  queue
event-emitter
Event Emitter module for Nest framework (node.js) 🦋
Stars: ✭ 102 (+537.5%)
Mutual labels:  event-emitter
node-svmq
Native System V message queues in Node.js
Stars: ✭ 16 (+0%)
Mutual labels:  queue
think-async
🌿 Exploring cooperative concurrency primitives in Python
Stars: ✭ 178 (+1012.5%)
Mutual labels:  queue
sdmq
is a simple delay message queue, based on redis and kotlin
Stars: ✭ 31 (+93.75%)
Mutual labels:  queue
QueueBundle
QueueBundle for Symfony Framework
Stars: ✭ 40 (+150%)
Mutual labels:  queue
talek
a Private Publish Subscribe System
Stars: ✭ 39 (+143.75%)
Mutual labels:  publish-subscribe
Algorithm-Data-Structures-Python
Various useful data structures in Python
Stars: ✭ 34 (+112.5%)
Mutual labels:  queue
Algorithms
Data Structures & Algorithms. Includes solutions for Cracking the Coding Interview 6th Edition
Stars: ✭ 89 (+456.25%)
Mutual labels:  queue
PubBus
A simple implementation of a MessageBus.
Stars: ✭ 19 (+18.75%)
Mutual labels:  publish-subscribe
Fortress-of-Solitude
This Library has resources to solve common data structure algorithm problems like a Doubly linked list, Generic trees, Queue, Stack, and other algorithms. Each lib has an option to carry your custom data in elements. Custom data in detail, other fantastic resources.
Stars: ✭ 53 (+231.25%)
Mutual labels:  queue
pgq
Generic Queue for PostgreSQL
Stars: ✭ 134 (+737.5%)
Mutual labels:  queue
collections
📝 Collections library made in TypeScript
Stars: ✭ 14 (-12.5%)
Mutual labels:  queue

Emitter-queue

Build Status NPM Downloads pledge

Queue messages coming from an event emitter until the creation of a listener. This module works in both front end and back end with event emitter interfaces.

Usage

const queue = require('emitter-queue')
const Emitter = require('events')

const emitter = queue(new Emitter)
emitter.queue('hello', 'foo')
emitter.queue('hello', 'bar')
emitter.on('hello', function(val) {
  //foo
  //bar
})

Installation

npm install emitter-queue --save

NPM

Question

For questions and feedback please use our twitter account. For support, bug reports and or feature requests please make sure to read our community guideline and use the issue list of this repo and make sure it's not present yet in our reporting checklist.

Contribution

Emitter-queue is an open source project and would not exist without its community. If you want to participate please make sure to read our guideline before making a pull request. If you have any emitter-queue related project, component or other let everyone know in our wiki.

Licence

The MIT License (MIT)

Copyright (c) 2016 Olivier Wietrich

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].