ziron-state 8.0.0 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,9 +27,9 @@ export declare class StateServer {
|
|
|
27
27
|
private _workerLeader;
|
|
28
28
|
private _joinedWorkers;
|
|
29
29
|
private _joinedBrokers;
|
|
30
|
-
get joinedWorkers(): Socket[];
|
|
31
|
-
get joinedBrokers(): Socket[];
|
|
32
|
-
get workerLeader(): Socket | null;
|
|
30
|
+
protected get joinedWorkers(): Socket[];
|
|
31
|
+
protected get joinedBrokers(): Socket[];
|
|
32
|
+
protected get workerLeader(): Socket | null;
|
|
33
33
|
private readonly _logger;
|
|
34
34
|
/**
|
|
35
35
|
* @description
|
|
@@ -41,9 +41,9 @@ export declare class StateServer {
|
|
|
41
41
|
readonly joinToken: string;
|
|
42
42
|
private _clusterSession;
|
|
43
43
|
private _scaleTimeout?;
|
|
44
|
-
workerJoinMiddleware: WorkerJoinMiddleware | undefined;
|
|
45
|
-
readonly procedures: StandaloneProcedures<'#leave' | '#join'>;
|
|
46
|
-
readonly receivers: StandaloneReceivers;
|
|
44
|
+
protected workerJoinMiddleware: WorkerJoinMiddleware | undefined;
|
|
45
|
+
protected readonly procedures: StandaloneProcedures<'#leave' | '#join'>;
|
|
46
|
+
protected readonly receivers: StandaloneReceivers;
|
|
47
47
|
constructor(options?: StateServerOptions);
|
|
48
48
|
private _initScaleDelayActive;
|
|
49
49
|
private _startInitScaleDelayTicker;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ziron-state",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0",
|
|
4
4
|
"description": "Ziron state",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"email": "lucacode1@gmail.com"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"ziron-server": "8.
|
|
21
|
+
"ziron-server": "8.2.0",
|
|
22
22
|
"log-update": "^4.0.0",
|
|
23
23
|
"table": "^6.7.5",
|
|
24
24
|
"ip": "^1.1.8",
|