node-red-contrib-ls-jms
Version:
Node-RED nodes to send and receive jms messages leveraging lightstreamer jms extender (https://lightstreamer.com/ls-jms-features)
12 lines (10 loc) • 371 B
JavaScript
module.exports = function(RED) {
function LsJmsConfig(config) {
RED.nodes.createNode(this, config);
// Get config
this.lightstreamerUrl = config.lightstreamerUrl || "http://localhost:8080/";
this.cfgName = config.cfgName || "Weblogic"
this.cfgCF = config.cfgCF || "CRCF"
}
RED.nodes.registerType("ls-jms-config", LsJmsConfig);
}