Compare commits

..

8 Commits

Author SHA1 Message Date
547c159dc4 1.0.14 2018-04-29 17:30:03 +02:00
046d7d646d update to latest standards 2018-04-29 17:30:00 +02:00
f6985bd7b2 1.0.13 2018-04-29 17:00:18 +02:00
241e44e19d update 2018-04-29 17:00:13 +02:00
99561166e2 1.0.12 2018-04-29 16:38:28 +02:00
0e95774f30 update ci 2018-04-29 16:38:23 +02:00
011af15866 1.0.11 2018-04-29 14:34:47 +02:00
77a13786d1 update ci config 2018-04-29 14:34:33 +02:00
3 changed files with 7 additions and 3 deletions

View File

@ -1,7 +1,8 @@
{
"npmci": {
"npmGlobalTools": [
"npmts"
"@gitzone/npmts",
"ts-node"
],
"npmAccessLevel": "public"
}

View File

@ -1,13 +1,13 @@
{
"name": "@pushrocks/smartuniverse",
"version": "1.0.10",
"version": "1.0.14",
"description": "messaging service for your micro services",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "ts-node test/test.ts",
"test": "(ts-node -O '{\"lib\": [ \"es2015\" ]}' test/test.ts)",
"build": "(npmts)",
"format": "(gitzone format)"
},

View File

@ -7,6 +7,9 @@ import { Objectmap } from 'lik';
import { Observable } from 'rxjs';
import { rxjs } from 'smartrx';
/**
* universe store handles the creation, storage and retrieval of messages.
*/
export class UniverseStore {
public standardMessageExpiry: number;
public destructionTime: number = 60000;