Comparing version 1.3.0 to 1.3.1
@@ -8,3 +8,3 @@ var Communication = require('../lib/Communication'); | ||
var VERSION = exports.VERSION = '1.3.0'; | ||
var VERSION = exports.VERSION = '1.3.1'; | ||
@@ -214,2 +214,16 @@ var _ = require('lodash'); | ||
/** | ||
* Creates a new event-flow by a starting-event without external ID or division | ||
* The parameter list is a vararg, see parameters below | ||
* | ||
* @method simpleIgnite | ||
* @param {String} event Name of the even to emit, mandatory | ||
* @param {String} params A vararg element possessing the objects to be sent with the message. Can be empty | ||
* @param {Function} callback Mandatory callback function as last element. | ||
*/ | ||
inflicter.simpleIgnite = function( ){ | ||
var args = [ null, '' ].concat( this.sliceArguments.apply( this, arguments ) ); | ||
return this.systemFirestarter.ignite.apply( this.systemFirestarter, args ); | ||
}; | ||
/** | ||
* Creates a new event-flow by a starting-event. | ||
@@ -216,0 +230,0 @@ * The parameter list is a vararg, see parameters below |
{ | ||
"name": "harcon", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Messaging/Service Bus for the harmonic convergence of node-based enterprise entities.", | ||
@@ -49,3 +49,3 @@ "keywords": [ | ||
}, | ||
"_id": "harcon@1.3.0" | ||
"_id": "harcon@1.3.1" | ||
} |
996408
16897