2015-10-11 21:37:11 +02:00
|
|
|
/**
|
2017-01-11 16:24:33 +01:00
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
2015-10-11 21:37:11 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
var when = require("when");
|
|
|
|
var clone = require("clone");
|
|
|
|
var typeRegistry = require("../registry");
|
|
|
|
var Log = require("../../log");
|
|
|
|
var redUtil = require("../../util");
|
|
|
|
var flowUtil = require("./util");
|
|
|
|
|
2017-05-15 14:05:33 +02:00
|
|
|
var nodeCloseTimeout = 15000;
|
|
|
|
|
2015-10-11 21:37:11 +02:00
|
|
|
function Flow(global,flow) {
|
|
|
|
if (typeof flow === 'undefined') {
|
|
|
|
flow = global;
|
|
|
|
}
|
|
|
|
var activeNodes = {};
|
|
|
|
var subflowInstanceNodes = {};
|
|
|
|
var catchNodeMap = {};
|
|
|
|
var statusNodeMap = {};
|
|
|
|
|
|
|
|
this.start = function(diff) {
|
|
|
|
var node;
|
2015-11-24 23:38:42 +01:00
|
|
|
var newNode;
|
2015-10-11 21:37:11 +02:00
|
|
|
var id;
|
|
|
|
catchNodeMap = {};
|
|
|
|
statusNodeMap = {};
|
2016-04-27 11:31:19 +02:00
|
|
|
|
|
|
|
var configNodes = Object.keys(flow.configs);
|
|
|
|
var configNodeAttempts = {};
|
2016-07-06 18:22:45 +02:00
|
|
|
while (configNodes.length > 0) {
|
2016-04-27 11:31:19 +02:00
|
|
|
id = configNodes.shift();
|
|
|
|
node = flow.configs[id];
|
|
|
|
if (!activeNodes[id]) {
|
|
|
|
var readyToCreate = true;
|
|
|
|
// This node doesn't exist.
|
|
|
|
// Check it doesn't reference another non-existent config node
|
|
|
|
for (var prop in node) {
|
|
|
|
if (node.hasOwnProperty(prop) && prop !== 'id' && prop !== 'wires' && prop !== '_users' && flow.configs[node[prop]]) {
|
|
|
|
if (!activeNodes[node[prop]]) {
|
|
|
|
// References a non-existent config node
|
|
|
|
// Add it to the back of the list to try again later
|
|
|
|
configNodes.push(id);
|
|
|
|
configNodeAttempts[id] = (configNodeAttempts[id]||0)+1;
|
|
|
|
if (configNodeAttempts[id] === 100) {
|
|
|
|
throw new Error("Circular config node dependency detected: "+id);
|
|
|
|
}
|
|
|
|
readyToCreate = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (readyToCreate) {
|
2015-11-24 23:38:42 +01:00
|
|
|
newNode = createNode(node.type,node);
|
|
|
|
if (newNode) {
|
|
|
|
activeNodes[id] = newNode;
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
2016-04-27 13:37:20 +02:00
|
|
|
}
|
2016-04-27 11:31:19 +02:00
|
|
|
|
2015-12-09 22:51:46 +01:00
|
|
|
if (diff && diff.rewired) {
|
2015-10-11 21:37:11 +02:00
|
|
|
for (var j=0;j<diff.rewired.length;j++) {
|
|
|
|
var rewireNode = activeNodes[diff.rewired[j]];
|
|
|
|
if (rewireNode) {
|
|
|
|
rewireNode.updateWires(flow.nodes[rewireNode.id].wires);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (id in flow.nodes) {
|
|
|
|
if (flow.nodes.hasOwnProperty(id)) {
|
|
|
|
node = flow.nodes[id];
|
|
|
|
if (!node.subflow) {
|
|
|
|
if (!activeNodes[id]) {
|
2015-11-24 23:38:42 +01:00
|
|
|
newNode = createNode(node.type,node);
|
|
|
|
if (newNode) {
|
|
|
|
activeNodes[id] = newNode;
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!subflowInstanceNodes[id]) {
|
|
|
|
try {
|
|
|
|
var nodes = createSubflow(flow.subflows[node.subflow]||global.subflows[node.subflow],node,flow.subflows,global.subflows,activeNodes);
|
|
|
|
subflowInstanceNodes[id] = nodes.map(function(n) { return n.id});
|
|
|
|
for (var i=0;i<nodes.length;i++) {
|
2015-11-24 23:38:42 +01:00
|
|
|
if (nodes[i]) {
|
|
|
|
activeNodes[nodes[i].id] = nodes[i];
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
} catch(err) {
|
|
|
|
console.log(err.stack)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (id in activeNodes) {
|
|
|
|
if (activeNodes.hasOwnProperty(id)) {
|
|
|
|
node = activeNodes[id];
|
|
|
|
if (node.type === "catch") {
|
|
|
|
catchNodeMap[node.z] = catchNodeMap[node.z] || [];
|
|
|
|
catchNodeMap[node.z].push(node);
|
|
|
|
} else if (node.type === "status") {
|
|
|
|
statusNodeMap[node.z] = statusNodeMap[node.z] || [];
|
|
|
|
statusNodeMap[node.z].push(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-22 00:36:21 +02:00
|
|
|
this.stop = function(stopList, removedList) {
|
2015-10-11 21:37:11 +02:00
|
|
|
return when.promise(function(resolve) {
|
|
|
|
var i;
|
|
|
|
if (stopList) {
|
|
|
|
for (i=0;i<stopList.length;i++) {
|
|
|
|
if (subflowInstanceNodes[stopList[i]]) {
|
|
|
|
// The first in the list is the instance node we already
|
|
|
|
// know about
|
|
|
|
stopList = stopList.concat(subflowInstanceNodes[stopList[i]].slice(1))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stopList = Object.keys(activeNodes);
|
|
|
|
}
|
2017-04-22 00:36:21 +02:00
|
|
|
// Convert the list to a map to avoid multiple scans of the list
|
|
|
|
var removedMap = {};
|
|
|
|
removedList = removedList || [];
|
|
|
|
removedList.forEach(function(id) {
|
|
|
|
removedMap[id] = true;
|
|
|
|
});
|
|
|
|
|
2015-10-11 21:37:11 +02:00
|
|
|
var promises = [];
|
|
|
|
for (i=0;i<stopList.length;i++) {
|
|
|
|
var node = activeNodes[stopList[i]];
|
|
|
|
if (node) {
|
|
|
|
delete activeNodes[stopList[i]];
|
|
|
|
if (subflowInstanceNodes[stopList[i]]) {
|
|
|
|
delete subflowInstanceNodes[stopList[i]];
|
|
|
|
}
|
|
|
|
try {
|
2017-05-15 14:05:33 +02:00
|
|
|
var removed = removedMap[stopList[i]];
|
|
|
|
promises.push(
|
|
|
|
when.promise(function(resolve, reject) {
|
|
|
|
var start;
|
|
|
|
var nt = node.type;
|
|
|
|
var nid = node.id;
|
|
|
|
var n = node;
|
|
|
|
when.promise(function(resolve) {
|
|
|
|
Log.trace("Stopping node "+nt+":"+nid+(removed?" removed":""));
|
|
|
|
start = Date.now();
|
|
|
|
resolve(n.close(removed));
|
|
|
|
}).timeout(nodeCloseTimeout).then(function(){
|
|
|
|
var delta = Date.now() - start;
|
|
|
|
Log.trace("Stopped node "+nt+":"+nid+" ("+delta+"ms)" );
|
|
|
|
resolve(delta);
|
|
|
|
},function(err) {
|
|
|
|
var delta = Date.now() - start;
|
|
|
|
n.error(Log._("nodes.flows.stopping-error",{message:err}));
|
|
|
|
Log.debug(err.stack);
|
|
|
|
reject(err);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
);
|
2015-10-11 21:37:11 +02:00
|
|
|
} catch(err) {
|
|
|
|
node.error(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-15 14:05:33 +02:00
|
|
|
when.settle(promises).then(function(results) {
|
2015-10-11 21:37:11 +02:00
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
this.update = function(_global,_flow) {
|
|
|
|
global = _global;
|
|
|
|
flow = _flow;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getNode = function(id) {
|
|
|
|
return activeNodes[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getActiveNodes = function() {
|
|
|
|
return activeNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.handleStatus = function(node,statusMessage) {
|
|
|
|
var targetStatusNodes = null;
|
|
|
|
var reportingNode = node;
|
|
|
|
var handled = false;
|
2016-07-06 18:22:45 +02:00
|
|
|
while (reportingNode && !handled) {
|
2015-10-11 21:37:11 +02:00
|
|
|
targetStatusNodes = statusNodeMap[reportingNode.z];
|
|
|
|
if (targetStatusNodes) {
|
|
|
|
targetStatusNodes.forEach(function(targetStatusNode) {
|
|
|
|
if (targetStatusNode.scope && targetStatusNode.scope.indexOf(node.id) === -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var message = {
|
|
|
|
status: {
|
|
|
|
text: "",
|
|
|
|
source: {
|
|
|
|
id: node.id,
|
|
|
|
type: node.type,
|
|
|
|
name: node.name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-07-06 18:22:45 +02:00
|
|
|
if (statusMessage.hasOwnProperty("text")) {
|
|
|
|
message.status.text = statusMessage.text.toString();
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
targetStatusNode.receive(message);
|
|
|
|
handled = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (!handled) {
|
|
|
|
reportingNode = activeNodes[reportingNode.z];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.handleError = function(node,logMessage,msg) {
|
|
|
|
var count = 1;
|
|
|
|
if (msg && msg.hasOwnProperty("error")) {
|
|
|
|
if (msg.error.hasOwnProperty("source")) {
|
|
|
|
if (msg.error.source.id === node.id) {
|
|
|
|
count = msg.error.source.count+1;
|
|
|
|
if (count === 10) {
|
|
|
|
node.warn(Log._("nodes.flow.error-loop"));
|
2017-05-03 14:42:38 +02:00
|
|
|
return false;
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var targetCatchNodes = null;
|
|
|
|
var throwingNode = node;
|
|
|
|
var handled = false;
|
|
|
|
while (throwingNode && !handled) {
|
|
|
|
targetCatchNodes = catchNodeMap[throwingNode.z];
|
|
|
|
if (targetCatchNodes) {
|
|
|
|
targetCatchNodes.forEach(function(targetCatchNode) {
|
|
|
|
if (targetCatchNode.scope && targetCatchNode.scope.indexOf(throwingNode.id) === -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var errorMessage;
|
|
|
|
if (msg) {
|
|
|
|
errorMessage = redUtil.cloneMessage(msg);
|
|
|
|
} else {
|
|
|
|
errorMessage = {};
|
|
|
|
}
|
|
|
|
if (errorMessage.hasOwnProperty("error")) {
|
|
|
|
errorMessage._error = errorMessage.error;
|
|
|
|
}
|
|
|
|
errorMessage.error = {
|
|
|
|
message: logMessage.toString(),
|
|
|
|
source: {
|
|
|
|
id: node.id,
|
|
|
|
type: node.type,
|
2015-11-02 16:38:16 +01:00
|
|
|
name: node.name,
|
2015-10-11 21:37:11 +02:00
|
|
|
count: count
|
|
|
|
}
|
|
|
|
};
|
2016-06-12 12:07:05 +02:00
|
|
|
if (logMessage.hasOwnProperty('stack')) {
|
|
|
|
errorMessage.error.stack = logMessage.stack;
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
targetCatchNode.receive(errorMessage);
|
|
|
|
handled = true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (!handled) {
|
|
|
|
throwingNode = activeNodes[throwingNode.z];
|
|
|
|
}
|
|
|
|
}
|
2017-05-03 14:42:38 +02:00
|
|
|
return handled;
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createNode(type,config) {
|
|
|
|
var nn = null;
|
|
|
|
var nt = typeRegistry.get(type);
|
|
|
|
if (nt) {
|
|
|
|
var conf = clone(config);
|
2015-11-02 16:38:16 +01:00
|
|
|
delete conf.credentials;
|
2015-10-11 21:37:11 +02:00
|
|
|
for (var p in conf) {
|
|
|
|
if (conf.hasOwnProperty(p)) {
|
2016-11-17 14:56:17 +01:00
|
|
|
flowUtil.mapEnvVarProperties(conf,p);
|
2015-10-11 21:37:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
nn = new nt(conf);
|
|
|
|
}
|
|
|
|
catch (err) {
|
|
|
|
Log.log({
|
|
|
|
level: Log.ERROR,
|
|
|
|
id:conf.id,
|
|
|
|
type: type,
|
|
|
|
msg: err
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Log.error(Log._("nodes.flow.unknown-type", {type:type}));
|
|
|
|
}
|
|
|
|
return nn;
|
|
|
|
}
|
|
|
|
|
|
|
|
function createSubflow(sf,sfn,subflows,globalSubflows,activeNodes) {
|
|
|
|
//console.log("CREATE SUBFLOW",sf.id,sfn.id);
|
|
|
|
var nodes = [];
|
|
|
|
var node_map = {};
|
|
|
|
var newNodes = [];
|
|
|
|
var node;
|
|
|
|
var wires;
|
|
|
|
var i,j,k;
|
|
|
|
|
|
|
|
var createNodeInSubflow = function(def) {
|
|
|
|
node = clone(def);
|
2015-11-18 21:10:46 +01:00
|
|
|
var nid = redUtil.generateId();
|
2015-10-11 21:37:11 +02:00
|
|
|
node_map[node.id] = node;
|
|
|
|
node._alias = node.id;
|
|
|
|
node.id = nid;
|
|
|
|
node.z = sfn.id;
|
|
|
|
newNodes.push(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone all of the subflow node definitions and give them new IDs
|
|
|
|
for (i in sf.configs) {
|
|
|
|
if (sf.configs.hasOwnProperty(i)) {
|
|
|
|
createNodeInSubflow(sf.configs[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Clone all of the subflow node definitions and give them new IDs
|
|
|
|
for (i in sf.nodes) {
|
|
|
|
if (sf.nodes.hasOwnProperty(i)) {
|
|
|
|
createNodeInSubflow(sf.nodes[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Look for any catch/status nodes and update their scope ids
|
|
|
|
// Update all subflow interior wiring to reflect new node IDs
|
|
|
|
for (i=0;i<newNodes.length;i++) {
|
|
|
|
node = newNodes[i];
|
|
|
|
if (node.wires) {
|
|
|
|
var outputs = node.wires;
|
|
|
|
for (j=0;j<outputs.length;j++) {
|
|
|
|
wires = outputs[j];
|
|
|
|
for (k=0;k<wires.length;k++) {
|
|
|
|
outputs[j][k] = node_map[outputs[j][k]].id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((node.type === 'catch' || node.type === 'status') && node.scope) {
|
|
|
|
node.scope = node.scope.map(function(id) {
|
|
|
|
return node_map[id]?node_map[id].id:""
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
for (var prop in node) {
|
|
|
|
if (node.hasOwnProperty(prop) && prop !== '_alias') {
|
|
|
|
if (node_map[node[prop]]) {
|
|
|
|
//console.log("Mapped",node.type,node.id,prop,node_map[node[prop]].id);
|
|
|
|
node[prop] = node_map[node[prop]].id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a subflow node to accept inbound messages and route appropriately
|
|
|
|
var Node = require("../Node");
|
|
|
|
var subflowInstance = {
|
|
|
|
id: sfn.id,
|
|
|
|
type: sfn.type,
|
|
|
|
z: sfn.z,
|
|
|
|
name: sfn.name,
|
|
|
|
wires: []
|
|
|
|
}
|
|
|
|
if (sf.in) {
|
|
|
|
subflowInstance.wires = sf.in.map(function(n) { return n.wires.map(function(w) { return node_map[w.id].id;})})
|
|
|
|
subflowInstance._originalWires = clone(subflowInstance.wires);
|
|
|
|
}
|
|
|
|
var subflowNode = new Node(subflowInstance);
|
|
|
|
|
|
|
|
subflowNode.on("input", function(msg) { this.send(msg);});
|
|
|
|
|
|
|
|
|
|
|
|
subflowNode._updateWires = subflowNode.updateWires;
|
|
|
|
|
|
|
|
subflowNode.updateWires = function(newWires) {
|
|
|
|
// Wire the subflow outputs
|
|
|
|
if (sf.out) {
|
|
|
|
var node,wires,i,j;
|
|
|
|
// Restore the original wiring to the internal nodes
|
|
|
|
subflowInstance.wires = clone(subflowInstance._originalWires);
|
|
|
|
for (i=0;i<sf.out.length;i++) {
|
|
|
|
wires = sf.out[i].wires;
|
|
|
|
for (j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id != sf.id) {
|
|
|
|
node = node_map[wires[j].id];
|
|
|
|
if (node._originalWires) {
|
|
|
|
node.wires = clone(node._originalWires);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var modifiedNodes = {};
|
|
|
|
var subflowInstanceModified = false;
|
|
|
|
|
|
|
|
for (i=0;i<sf.out.length;i++) {
|
|
|
|
wires = sf.out[i].wires;
|
|
|
|
for (j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id === sf.id) {
|
|
|
|
subflowInstance.wires[wires[j].port] = subflowInstance.wires[wires[j].port].concat(newWires[i]);
|
|
|
|
subflowInstanceModified = true;
|
|
|
|
} else {
|
|
|
|
node = node_map[wires[j].id];
|
|
|
|
node.wires[wires[j].port] = node.wires[wires[j].port].concat(newWires[i]);
|
|
|
|
modifiedNodes[node.id] = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Object.keys(modifiedNodes).forEach(function(id) {
|
|
|
|
var node = modifiedNodes[id];
|
|
|
|
subflowNode.instanceNodes[id].updateWires(node.wires);
|
|
|
|
});
|
|
|
|
if (subflowInstanceModified) {
|
|
|
|
subflowNode._updateWires(subflowInstance.wires);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nodes.push(subflowNode);
|
|
|
|
|
|
|
|
// Wire the subflow outputs
|
|
|
|
if (sf.out) {
|
|
|
|
var modifiedNodes = {};
|
|
|
|
for (i=0;i<sf.out.length;i++) {
|
|
|
|
wires = sf.out[i].wires;
|
|
|
|
for (j=0;j<wires.length;j++) {
|
|
|
|
if (wires[j].id === sf.id) {
|
|
|
|
// A subflow input wired straight to a subflow output
|
|
|
|
subflowInstance.wires[wires[j].port] = subflowInstance.wires[wires[j].port].concat(sfn.wires[i])
|
|
|
|
subflowNode._updateWires(subflowInstance.wires);
|
|
|
|
} else {
|
|
|
|
node = node_map[wires[j].id];
|
|
|
|
modifiedNodes[node.id] = node;
|
|
|
|
if (!node._originalWires) {
|
|
|
|
node._originalWires = clone(node.wires);
|
|
|
|
}
|
|
|
|
node.wires[wires[j].port] = (node.wires[wires[j].port]||[]).concat(sfn.wires[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Instantiate the nodes
|
|
|
|
for (i=0;i<newNodes.length;i++) {
|
|
|
|
node = newNodes[i];
|
|
|
|
var type = node.type;
|
|
|
|
|
|
|
|
var m = /^subflow:(.+)$/.exec(type);
|
|
|
|
if (!m) {
|
|
|
|
var newNode = createNode(type,node);
|
2015-11-24 23:38:42 +01:00
|
|
|
if (newNode) {
|
|
|
|
activeNodes[node.id] = newNode;
|
|
|
|
nodes.push(newNode);
|
|
|
|
}
|
2015-10-11 21:37:11 +02:00
|
|
|
} else {
|
|
|
|
var subflowId = m[1];
|
|
|
|
nodes = nodes.concat(createSubflow(subflows[subflowId]||globalSubflows[subflowId],node,subflows,globalSubflows,activeNodes));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subflowNode.instanceNodes = {};
|
|
|
|
|
|
|
|
nodes.forEach(function(node) {
|
2016-07-06 18:22:45 +02:00
|
|
|
subflowNode.instanceNodes[node.id] = node;
|
2015-10-11 21:37:11 +02:00
|
|
|
});
|
|
|
|
return nodes;
|
|
|
|
}
|
|
|
|
|
2017-05-15 14:05:33 +02:00
|
|
|
|
2015-10-11 21:37:11 +02:00
|
|
|
module.exports = {
|
2017-05-15 14:05:33 +02:00
|
|
|
init: function(settings) {
|
|
|
|
nodeCloseTimeout = settings.nodeCloseTimeout || 15000;
|
|
|
|
},
|
2015-10-11 21:37:11 +02:00
|
|
|
create: function(global,conf) {
|
|
|
|
return new Flow(global,conf);
|
|
|
|
}
|
|
|
|
}
|