Angular MQ Service
ng2-simple-mq is a message queue service for Angular inter-component communication base on RxJS.
Name/ID(string) base API. RxJS object not exposed.
(This package does not communicate with RabbitMQ or any other message queue software/service.)
ng2-simple-mq uses Angular CLI starting 8.2.0. New repository github.com/J-Siu/ng2-simple-mq-lib contains both library and example.
Version < 8.2.0 are in old repository github.com/J-Siu/ng2-simple-mq
Install
|
|
Usage
ng2-simple-mq is implemented as Angular 2 injectable service name SimpleMQ.
Module
Add SimpleMQ
into module providers (eg. app.module.ts.
|
|
Component
|
|
API
newQueue(name: string): boolean
newQueue
will create queue name
.
Return false
if queue name
exist.
|
|
delQueue(name: string): boolean
delQueue
will delete queue name
.
Return false
if queue name
does not exist.
|
|
getQueue(): string[]
getQueue
will return all queue name in string array.
|
|
getSubscription(): string[]
getSubscription
will return all subscription id in string array.
|
|
publish(name: string, msg: any, lazy = true): boolean
publish
will put msg
into queue name
.
If lazy = true
(default), queue name
will be created automatically if not exist yet.
Return true if successful.
Return false if any of following is true:
lazy = false
, and queuename
does not exist.name
is undefined.msg
is undefined.
|
|
subscribe(name: string, callback: (any) => void, lazy = true): string
subscribe
will link callback
function to queue name
. Whenever queue name
receive a new message, callback
will be invoked.
If lazy = true
(default), queue name
will be created automatically if not exist yet.
Return subscription id if successful.
Return empty string if any of following is true:
lazy = false
, and queuename
does not exist.name
is undefined.callback
is undefined.
Either use Lambda(fat arrow) in typescript to pass in callback or bind this
to another variable in javascript, else this
scope will be lost.
Lambda(fat arrow)
|
|
unsubscribe(id: string): boolean
unsubscribe
will cancel subscription using id
.
unsubscribe
will return false if id
is undefined or id
is not found in subscription list.
|
|
Example
You will need Angular CLI to build the library and run the example.
|
|
Repository
Contributors
Changelog
- 0.1.0-alpha - Initial
- 0.1.1-alpha - Add Readme.md
- 0.1.2-alpha - Readme.md fix
- 0.1.3-alpha - Fix components.js
- 0.2.0
- Complete Readme.md
- Fix index.js and index.d.ts
- 0.2.1
- API change
- newQueue return boolean
- API new
- delQueue
- getSubscription
- unsubscribe
- 0.2.2
- Support Angular2 RC5
- 0.2.3
- Fix Readme.md
- 1.2.4
- Support Angular2 ^2.0.0
- Clean up package
- 1.2.5
- Add Plunker example
- 1.2.6
- Support Angular2 ^2.4.1
- Replace node-uuid with angular2-uuid
- Add instruction for
"noImplicitAny": false
*- 1.2.7 - Due to the rapid release cycle of Angular, to minimize
update purely due to
peerDependencies
, it is modified as follow:"peerDependencies": { "@angular/core": ">2.4.1" }
- 1.2.8
- Update to support Angular 4.3.1. Please use previous version for Angular 2.x.x.
- 1.2.9
- Fix issue#2
delQueue
- Fix issue#2
- 8.2.0
- Support Angular 8.2.0
- Switch to Angular Cli for faster update
- Include example
- 8.2.1
- README.md clean up
License
The MIT License
Copyright (c) 2019
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.