Compare commits

..

2 Commits

Author SHA1 Message Date
e0ce732ee1 1.0.35 2019-04-11 18:57:24 +02:00
98be0f036c fix(core): update 2019-04-11 18:57:23 +02:00
3 changed files with 6 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartuniverse",
"version": "1.0.34",
"version": "1.0.35",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartuniverse",
"version": "1.0.34",
"version": "1.0.35",
"private": false,
"description": "messaging service for your micro services",
"main": "dist/index.js",

View File

@ -17,7 +17,10 @@ export class UniverseMessage implements interfaces.IUniverseMessage {
* public and unique id
* numeric ascending
* adheres to time in milliseconds
* avoids duplications though
* -> meaning it describes the time of arrival
* -> two messages received at the same time will count up the second one
* -> avoids duplications of messages
* -> may be changed to nanoseconds to ensure higher throughput
*/
public id: number;