commit | 6b382d11aef8b166d90587a5005d1efbb2cd04d2 | [log] [tgz] |
---|---|---|
author | ChrisC <christophe.closset@intl.att.com> | Tue Oct 27 12:07:37 2020 +0100 |
committer | ChrisC <christophe.closset@intl.att.com> | Tue Oct 27 12:07:37 2020 +0100 |
tree | 151b67bdf658e8b73f5b4c1c4ca32eb91c165e70 | |
parent | dfe9a52f707983854d7c9e76cc13ce78704b963b [diff] |
Update INFO.yaml Add new SDC committers Issue-ID: SDC-3334 Signed-off-by: ChrisC <christophe.closset@intl.att.com> Change-Id: I5bc3a1e2ca3875a5800d3c9a3cbd8b9a5f3a1c28
sdc-pubsub npm package.
Installing using npm:
npm install sdc-pubsub
import {PluginPubSub} from 'sdc-pubsub'
<!-- index.html --> <script src="./node_modules/sdc-pubsub/dist/sdc-pubsub.js"></script>
// script.js var pubsub = window.sdcPubSub.PluginPubSub;
// eventsClientId = client id to be used by the event bus, received from query params // parentUrl = event bus location url for communication, received from query params // eventsToWaitFor = list of events names that the event hub should wait for their completion. // the client should send an "ACTION_COMPLETED" event to the hub in order to notify the event hub to continue with the flow. // For example: [ “CHECK_IN” ] var client = new PluginPubSub('eventsClientId, parentUrl, eventsToWaitFor')
client.notify(“READY”)
// When lisetning to event we have to specify the specific event we want to act once it being received. // eventData.type will hold the event name that was notified by someone else client.on((eventData,event) => { if(eventData.type == ”WINDOW_OUT”) { //do logic } } )
None.
None.
Copyright 2018 AT&T, Inc.
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0