@nsshunt/stsappframework 3.0.93 → 3.0.94
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.
- package/dist/authutilsnode.js +6 -7
- package/dist/authutilsnode.js.map +1 -1
- package/dist/influxdb/influxDBManager.js +16 -17
- package/dist/influxdb/influxDBManager.js.map +1 -1
- package/dist/influxdb/influxDBManagerAgent.js +9 -13
- package/dist/influxdb/influxDBManagerAgent.js.map +1 -1
- package/dist/influxdb/influxDBManagerBase.js +2 -6
- package/dist/influxdb/influxDBManagerBase.js.map +1 -1
- package/dist/influxdb/influxDBManagerService.js +10 -14
- package/dist/influxdb/influxDBManagerService.js.map +1 -1
- package/dist/instrumentationsubscriber.js +11 -15
- package/dist/instrumentationsubscriber.js.map +1 -1
- package/dist/kafka/IMKafkaManager.js +2 -6
- package/dist/kafka/IMKafkaManager.js.map +1 -1
- package/dist/kafkatesting/produce.js +1 -5
- package/dist/kafkatesting/produce.js.map +1 -1
- package/dist/masterprocessbase.js +19 -20
- package/dist/masterprocessbase.js.map +1 -1
- package/dist/processbase.js +7 -8
- package/dist/processbase.js.map +1 -1
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/singleprocessbase.js +3 -4
- package/dist/singleprocessbase.js.map +1 -1
- package/dist/tcpclient/app2.js +2 -2
- package/dist/tcpserver/appmaster.js +39 -16
- package/dist/tcpserver/appmaster.js.map +1 -1
- package/dist/testing/appWorkerWSS.js +6 -7
- package/dist/testing/appWorkerWSS.js.map +1 -1
- package/dist/testing/singleservertest.test.js +8 -9
- package/dist/testing/singleservertest.test.js.map +1 -1
- package/dist/workerprocessbase.js +3 -4
- package/dist/workerprocessbase.js.map +1 -1
- package/package.json +1 -1
- package/src/authutilsnode.ts +8 -10
- package/src/influxdb/influxDBManager.ts +16 -18
- package/src/influxdb/influxDBManagerAgent.ts +9 -11
- package/src/influxdb/influxDBManagerBase.ts +2 -4
- package/src/influxdb/influxDBManagerService.ts +10 -12
- package/src/instrumentationsubscriber.ts +11 -14
- package/src/kafka/IMKafkaManager.ts +2 -4
- package/src/kafkatesting/produce.ts +1 -3
- package/src/masterprocessbase.ts +32 -24
- package/src/processbase.ts +7 -9
- package/src/server.ts +1 -1
- package/src/singleprocessbase.ts +3 -5
- package/src/tcpclient/app2.ts +2 -2
- package/src/tcpserver/appmaster.ts +39 -17
- package/src/testing/appWorkerWSS.ts +6 -8
- package/src/testing/singleservertest.test.ts +8 -10
- package/src/workerprocessbase.ts +3 -5
- package/types/authutilsnode.d.ts.map +1 -1
- package/types/influxdb/influxDBManager.d.ts.map +1 -1
- package/types/influxdb/influxDBManagerAgent.d.ts.map +1 -1
- package/types/influxdb/influxDBManagerBase.d.ts.map +1 -1
- package/types/influxdb/influxDBManagerService.d.ts.map +1 -1
- package/types/instrumentationsubscriber.d.ts.map +1 -1
- package/types/kafka/IMKafkaManager.d.ts.map +1 -1
- package/types/masterprocessbase.d.ts.map +1 -1
- package/types/processbase.d.ts +2 -2
- package/types/processbase.d.ts.map +1 -1
- package/types/singleprocessbase.d.ts.map +1 -1
- package/types/tcpserver/appmaster.d.ts.map +1 -1
- package/types/testing/appWorkerWSS.d.ts.map +1 -1
- package/types/workerprocessbase.d.ts.map +1 -1
package/src/tcpclient/app2.ts
CHANGED
|
@@ -48,9 +48,9 @@ socket2.on('secureConnect', () => {
|
|
|
48
48
|
dosomework(socket2);
|
|
49
49
|
});
|
|
50
50
|
socket2.on('close', function(data: any) {
|
|
51
|
-
console.log(
|
|
51
|
+
console.log(`CLOSED: ${socket2.remoteAddress} ${socket2.remotePort}`.green);
|
|
52
52
|
});
|
|
53
53
|
socket2.on('data', function(data: any) {
|
|
54
|
-
console.log(
|
|
54
|
+
console.log(`DATA ${socket2.remoteAddress} ${socket2.remotePort} ${data}`.green);
|
|
55
55
|
});
|
|
56
56
|
*/
|
|
@@ -9,8 +9,6 @@ import { JSONObject } from '@nsshunt/stsutils';
|
|
|
9
9
|
import { MasterProcessBase } from './../masterprocessbase'
|
|
10
10
|
import { ProcessOptions } from './../processoptions'
|
|
11
11
|
|
|
12
|
-
import chalk from 'chalk';
|
|
13
|
-
|
|
14
12
|
// Colour codes
|
|
15
13
|
// ---------------------------------
|
|
16
14
|
// Red - Error
|
|
@@ -124,7 +122,7 @@ export class AppMaster extends MasterProcessBase
|
|
|
124
122
|
// Update my currentTerm
|
|
125
123
|
this.#currentTerm = term;
|
|
126
124
|
// Return my yes vote
|
|
127
|
-
console.log(
|
|
125
|
+
console.log(`${message} - Vote Yes`.green)
|
|
128
126
|
callback(null, true); // YES vote
|
|
129
127
|
}
|
|
130
128
|
|
|
@@ -132,7 +130,7 @@ export class AppMaster extends MasterProcessBase
|
|
|
132
130
|
// Log the fact that I have now voted for this currentTerm
|
|
133
131
|
this.#votedLog[term] = true;
|
|
134
132
|
// Return my yes vote
|
|
135
|
-
console.log(
|
|
133
|
+
console.log(`${message} - Vote No`.yellow)
|
|
136
134
|
callback(null, false); // NO vote
|
|
137
135
|
}
|
|
138
136
|
|
|
@@ -231,19 +229,19 @@ export class AppMaster extends MasterProcessBase
|
|
|
231
229
|
const retVal = this.#CheckMoreRecentTerm(term, lastLogItemTerm, lastLogItemIndex);
|
|
232
230
|
if (retVal.retVal === true) {
|
|
233
231
|
console.log(`${retVal.msg}`);
|
|
234
|
-
console.log(
|
|
232
|
+
console.log(`${this.#GetLogPrefix()}: New leader detected, Host: [${host}], Port: [${port}], while in CANDIDATE mode, reverting to FOLLOWER.`.magenta);
|
|
235
233
|
// This sending node is the leader so revert to follower
|
|
236
234
|
this.#currentTerm = term;
|
|
237
235
|
this.#ChangeState(AppMasterRAFTState.FOLLOWER);
|
|
238
236
|
} else {
|
|
239
237
|
console.log(`${retVal.msg}`);
|
|
240
|
-
console.log(
|
|
238
|
+
console.log(`${this.#GetLogPrefix()}: appendEntry called but log is older than my current state, Host: [${host}], Port: [${port}].`.magenta);
|
|
241
239
|
// Reject this RPC and continue in the CANDIDATE state
|
|
242
240
|
callback(null, false);
|
|
243
241
|
return;
|
|
244
242
|
}
|
|
245
243
|
} else if (this.#RAFTState.localeCompare(AppMasterRAFTState.LEADER) === 0) {
|
|
246
|
-
console.log(
|
|
244
|
+
console.log(`${this.#GetLogPrefix()}: appendEntry called while I am the current leader, rejecting RPC call.`.red);
|
|
247
245
|
// Reject this RPC and continue in the LEADER state
|
|
248
246
|
callback(null, false);
|
|
249
247
|
return;
|
|
@@ -260,7 +258,7 @@ export class AppMaster extends MasterProcessBase
|
|
|
260
258
|
}
|
|
261
259
|
} else {
|
|
262
260
|
console.log(`${retVal.msg}`);
|
|
263
|
-
console.log(
|
|
261
|
+
console.log(`${this.#GetLogPrefix()}: appendEntry called but log is older than my current state, Host: [${host}], Port: [${port}].`.magenta);
|
|
264
262
|
// Reject this RPC and continue in the CANDIDATE state
|
|
265
263
|
callback(null, false);
|
|
266
264
|
return;
|
|
@@ -272,13 +270,13 @@ export class AppMaster extends MasterProcessBase
|
|
|
272
270
|
if (sentLeaderService) {
|
|
273
271
|
if (sentLeaderService.host.localeCompare(this.#leaderNode.host) !== 0 || sentLeaderService.port !== this.#leaderNode.port) {
|
|
274
272
|
this.#leaderNode = sentLeaderService;
|
|
275
|
-
console.log(
|
|
273
|
+
console.log(`${this.#GetLogPrefix()}: Leader Service: Host:[${this.#leaderNode.host}] Port: [${this.#leaderNode.port}]`.white);
|
|
276
274
|
}
|
|
277
275
|
}
|
|
278
276
|
} else {
|
|
279
277
|
this.#leaderNode = this.#FindService(host, port);
|
|
280
278
|
if (this.#leaderNode) {
|
|
281
|
-
console.log(
|
|
279
|
+
console.log(`${this.#GetLogPrefix()}: Leader Service: Host:[${this.#leaderNode.host}] Port: [${this.#leaderNode.port}]`.white);
|
|
282
280
|
}
|
|
283
281
|
}
|
|
284
282
|
|
|
@@ -311,6 +309,18 @@ export class AppMaster extends MasterProcessBase
|
|
|
311
309
|
};
|
|
312
310
|
|
|
313
311
|
const client = jayson.client.tls(options);
|
|
312
|
+
/*
|
|
313
|
+
client.on('tcp socket', (socket: tls.TLSSocket) => {
|
|
314
|
+
socket.setTimeout(200); //@@ config
|
|
315
|
+
socket.on('timeout', () => {
|
|
316
|
+
console.log('socket timeout');
|
|
317
|
+
socket.end();
|
|
318
|
+
});
|
|
319
|
+
});
|
|
320
|
+
client.on('tcp error', (error: any) => {
|
|
321
|
+
console.log(`ERROR: [${error}]`.red);
|
|
322
|
+
});
|
|
323
|
+
*/
|
|
314
324
|
|
|
315
325
|
let lastLogItem: ILogItem;
|
|
316
326
|
if (this.#log.length > 0) {
|
|
@@ -325,7 +335,7 @@ export class AppMaster extends MasterProcessBase
|
|
|
325
335
|
|
|
326
336
|
client.request('vote', [ this.#currentTerm, lastLogItem.term, lastLogItem.index ], (error: any, response: any) => {
|
|
327
337
|
if (error) {
|
|
328
|
-
//console.log(
|
|
338
|
+
//console.log(`vote attempt fail: [${JSON.stringify(options)}: ${error}]`.red);
|
|
329
339
|
} else {
|
|
330
340
|
// Log the result
|
|
331
341
|
if (response.result === true) {
|
|
@@ -343,6 +353,18 @@ export class AppMaster extends MasterProcessBase
|
|
|
343
353
|
};
|
|
344
354
|
|
|
345
355
|
const client = jayson.client.tls(options);
|
|
356
|
+
/*
|
|
357
|
+
client.on('tcp socket', (socket: tls.TLSSocket) => {
|
|
358
|
+
socket.setTimeout(200); //@@ config
|
|
359
|
+
socket.on('timeout', () => {
|
|
360
|
+
console.log('socket timeout');
|
|
361
|
+
socket.end();
|
|
362
|
+
});
|
|
363
|
+
});
|
|
364
|
+
client.on('tcp error', (error: any) => {
|
|
365
|
+
console.log(`ERROR: [${error}]`.red);
|
|
366
|
+
});
|
|
367
|
+
*/
|
|
346
368
|
|
|
347
369
|
let lastLogItem: ILogItem;
|
|
348
370
|
if (this.#log.length > 0) {
|
|
@@ -357,7 +379,7 @@ export class AppMaster extends MasterProcessBase
|
|
|
357
379
|
|
|
358
380
|
client.request('appendEntry', [ this.#thisService.host, this.#thisService.port, this.#currentTerm, lastLogItem.term, lastLogItem.index ], (error: any, response: any) => {
|
|
359
381
|
if (error) {
|
|
360
|
-
//console.log(
|
|
382
|
+
//console.log(`appendEntry attempt fail: [${JSON.stringify(options)}: ${error}]`.red);
|
|
361
383
|
} else {
|
|
362
384
|
this.#appendedEntries[this.#GetServiceKey(service)] = 1;
|
|
363
385
|
// Log the result
|
|
@@ -409,14 +431,14 @@ export class AppMaster extends MasterProcessBase
|
|
|
409
431
|
if (majority) {
|
|
410
432
|
this.#StartAppendEntries();
|
|
411
433
|
} else {
|
|
412
|
-
console.log(
|
|
434
|
+
console.log(`${this.#GetLogPrefix()}: Not enough response for valid cluster state.`.red);
|
|
413
435
|
}
|
|
414
436
|
}, this.#heartBeatTimeout);
|
|
415
437
|
}
|
|
416
438
|
|
|
417
439
|
#Promote = () => {
|
|
418
440
|
this.#ChangeState(AppMasterRAFTState.LEADER);
|
|
419
|
-
console.log(
|
|
441
|
+
console.log(`${this.#GetLogPrefix()}: New LEADER is elected: [${this.#GetSelfServiceKey()}]`.green);
|
|
420
442
|
// As leader, now start the regular pings
|
|
421
443
|
this.#StartAppendEntries();
|
|
422
444
|
}
|
|
@@ -470,7 +492,7 @@ export class AppMaster extends MasterProcessBase
|
|
|
470
492
|
// Log the result - Vote for myself
|
|
471
493
|
this.#votes[this.#GetSelfServiceKey()] = 1;
|
|
472
494
|
// Return my yes vote
|
|
473
|
-
console.log(
|
|
495
|
+
console.log(`${this.#GetLogPrefix()}: SELF VOTE: canidate currentTerm: [${this.#currentTerm}], vote YES`.green)
|
|
474
496
|
this.#CheckMajority();
|
|
475
497
|
} else {
|
|
476
498
|
// Send vote request
|
|
@@ -504,13 +526,13 @@ export class AppMaster extends MasterProcessBase
|
|
|
504
526
|
}
|
|
505
527
|
|
|
506
528
|
#StartRAFTService = async () => {
|
|
507
|
-
this.LogEx(
|
|
529
|
+
this.LogEx(`---[ RAFT Protocol Starting ]---`.green);
|
|
508
530
|
this.#server = await this.#SetupJSONRPCServer();
|
|
509
531
|
this.#StartElectionTimeout();
|
|
510
532
|
}
|
|
511
533
|
|
|
512
534
|
#ChangeState(newState: AppMasterRAFTState) {
|
|
513
|
-
this.LogEx(
|
|
535
|
+
this.LogEx(`${this.#GetLogPrefix()}: State Change, From: [${this.#RAFTState.toString()}] --> To: [${newState.toString()}]`.magenta);
|
|
514
536
|
this.#RAFTState = newState;
|
|
515
537
|
}
|
|
516
538
|
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/* eslint @typescript-eslint/no-explicit-any: 0 */ // --> OFF
|
|
2
2
|
import cluster from 'node:cluster';
|
|
3
3
|
|
|
4
|
-
import chalk from 'chalk';
|
|
5
|
-
|
|
6
4
|
import { WorkerProcessBase, STSNamespace, STSRoom, SocketIoServerHelper, STSSocketIONamespace } from './../index'
|
|
7
5
|
|
|
8
6
|
//import { Socket, Namespace } from "socket.io";
|
|
@@ -63,7 +61,7 @@ export class WorkerProcess extends WorkerProcessBase
|
|
|
63
61
|
|
|
64
62
|
if (cluster.worker && cluster.worker.id !== workerId) {
|
|
65
63
|
// Invalid data - this workerId must match
|
|
66
|
-
console.log(
|
|
64
|
+
console.log(`WorkerProcess.ReceivedMessageFromMaster: Invalid workerId: [${workerId}]. Should have been: [${cluster.worker.id}].`.red);
|
|
67
65
|
} else {
|
|
68
66
|
const workerProcess: WorkerProcess = this as WorkerProcess;
|
|
69
67
|
if (workerProcess.stsMonitorNamespace !== null) {
|
|
@@ -71,16 +69,16 @@ export class WorkerProcess extends WorkerProcessBase
|
|
|
71
69
|
const sockets = await stsMonitorNamespace.fetchSockets();
|
|
72
70
|
for (const socket of sockets) {
|
|
73
71
|
if (socket.id.localeCompare(socketId) === 0) {
|
|
74
|
-
console.log(
|
|
72
|
+
console.log(`WorkerProcess.ReceivedMessageFromMaster: Sending payload to subscribed client.`.green);
|
|
75
73
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
76
74
|
//socket.emit(STSEvent.STSSubInstrumentData as any, model);
|
|
77
75
|
return;
|
|
78
76
|
}
|
|
79
77
|
}
|
|
80
|
-
console.log(
|
|
78
|
+
console.log(`WorkerProcess.ReceivedMessageFromMaster: Invalid socketId. Expecting socket to existing in socket namespace collection.`.red);
|
|
81
79
|
// Invalid - could not find matching socketid to send to
|
|
82
80
|
} else {
|
|
83
|
-
console.log(
|
|
81
|
+
console.log(`WorkerProcess.ReceivedMessageFromMaster: Invalid workerProcess.stsMonitorNamespace is null. Expecting non-null value.`.red);
|
|
84
82
|
}
|
|
85
83
|
}
|
|
86
84
|
}
|
|
@@ -100,12 +98,12 @@ export class WorkerProcess extends WorkerProcessBase
|
|
|
100
98
|
console.log(`WorkerProcess.#SendIPCMessageToMaster`.grey);
|
|
101
99
|
(process as any).send( { command: eventName, payload }, null, { swallowErrors: true }, (error: any) => {
|
|
102
100
|
if (error) {
|
|
103
|
-
console.error(
|
|
101
|
+
console.error(`Error with WorkerProcess:SendIPCMessageToMaster(1): [${error}]`.red);
|
|
104
102
|
}
|
|
105
103
|
});
|
|
106
104
|
}
|
|
107
105
|
} catch (error) {
|
|
108
|
-
console.error(
|
|
106
|
+
console.error(`Error with WorkerProcess:SendIPCMessageToMaster(2): [${error}]`.red);
|
|
109
107
|
}
|
|
110
108
|
}
|
|
111
109
|
|
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
import debugModule from 'debug'
|
|
3
3
|
const debug = debugModule(`proc:${process.pid}:singleservertest.test`);
|
|
4
4
|
|
|
5
|
-
import chalk from 'chalk';
|
|
6
|
-
|
|
7
5
|
import axios, { AxiosError, AxiosResponse } from 'axios';
|
|
8
6
|
|
|
9
7
|
import { Sleep } from '@nsshunt/stsutils'
|
|
@@ -66,26 +64,26 @@ describe("Single Server Test", () =>
|
|
|
66
64
|
`${endpoint}:${goptions.rest01port}/${STSNamespace.STSMonitor}/`;
|
|
67
65
|
|
|
68
66
|
const HandleError = (error: any) => {
|
|
69
|
-
debug(
|
|
67
|
+
debug(`Error: [${error}]`.red)
|
|
70
68
|
if (axios.isAxiosError(error)) {
|
|
71
69
|
const axiosError: AxiosError = error;
|
|
72
70
|
if (axiosError.response) {
|
|
73
|
-
debug(
|
|
71
|
+
debug(`AXIOS Error Response.Status = [${axiosError.response.status}]`.red)
|
|
74
72
|
if (axiosError.response.headers) {
|
|
75
|
-
console.log(
|
|
73
|
+
console.log(` headers: [${JSON.stringify(axiosError.response.headers)}]`.red);
|
|
76
74
|
}
|
|
77
75
|
if (axiosError.response.data) {
|
|
78
|
-
console.log(
|
|
76
|
+
console.log(` data: [${JSON.stringify(axiosError.response.data)}]`.red);
|
|
79
77
|
}
|
|
80
78
|
try {
|
|
81
79
|
if (axiosError.response.config) {
|
|
82
|
-
console.log(
|
|
80
|
+
console.log(` config: [${JSON.stringify(axiosError.response.config)}]`.red);
|
|
83
81
|
}
|
|
84
82
|
} catch (innererror: any) {
|
|
85
|
-
console.log(
|
|
83
|
+
console.log(` could not get response config, error: [${innererror}]`.red);
|
|
86
84
|
}
|
|
87
85
|
} else {
|
|
88
|
-
debug(
|
|
86
|
+
debug(`AXIOS Error = [${axiosError}]`.red)
|
|
89
87
|
}
|
|
90
88
|
}
|
|
91
89
|
}
|
|
@@ -270,7 +268,7 @@ describe("Single Server Test", () =>
|
|
|
270
268
|
instrumentManagerAddress,
|
|
271
269
|
// Connected call back
|
|
272
270
|
(socket: Socket<ServerToClientEvents, ClientToServerEvents>) => {
|
|
273
|
-
debug(
|
|
271
|
+
debug(`connected - 1`.green);
|
|
274
272
|
expect(1).toEqual(1);
|
|
275
273
|
},
|
|
276
274
|
// Custom Events
|
package/src/workerprocessbase.ts
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
import debugModule from 'debug'
|
|
3
3
|
const debug = debugModule(`proc:${process.pid}`);
|
|
4
4
|
|
|
5
|
-
import chalk from 'chalk';
|
|
6
|
-
|
|
7
5
|
import { Gauge, InstrumentGaugeTelemetry } from '@nsshunt/stsinstrumentation'
|
|
8
6
|
import { JSONObject } from '@nsshunt/stsutils'
|
|
9
7
|
import { ProcessOptions } from './processoptions'
|
|
@@ -60,14 +58,14 @@ export class WorkerProcessBase extends ServerProcessBase implements IWorkerProce
|
|
|
60
58
|
setTimeout(() => {
|
|
61
59
|
delete this.#inFlightMessage[message.id];
|
|
62
60
|
}, 0).unref();
|
|
63
|
-
debug(
|
|
61
|
+
debug(`Resolving response message with id: [${message.id}] from parent process via IPC. Details: [${JSON.stringify(this.#inFlightMessage[message.id].iPCMessagePayload)}]`.green);
|
|
64
62
|
resolve(detail);
|
|
65
63
|
},
|
|
66
64
|
timeout: setTimeout(() => {
|
|
67
65
|
setTimeout(() => {
|
|
68
66
|
delete this.#inFlightMessage[message.id];
|
|
69
67
|
}, 0).unref();
|
|
70
|
-
debug(
|
|
68
|
+
debug(`Timeout has occurred after: [${this.#requestResponseMessageTimeout}]ms with message id: [${message.id}]. Details: [${JSON.stringify(this.#inFlightMessage[message.id].iPCMessagePayload)}]`.red);
|
|
71
69
|
reject('Did not receive response form parent process.');
|
|
72
70
|
}, this.#requestResponseMessageTimeout) // max message timeout allowed
|
|
73
71
|
}
|
|
@@ -182,6 +180,6 @@ export class WorkerProcessBase extends ServerProcessBase implements IWorkerProce
|
|
|
182
180
|
|
|
183
181
|
this.WorkerStarted();
|
|
184
182
|
|
|
185
|
-
this.LogEx(
|
|
183
|
+
this.LogEx(`Worker process:${process.pid} started`.green);
|
|
186
184
|
};
|
|
187
185
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authutilsnode.d.ts","sourceRoot":"","sources":["../src/authutilsnode.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"authutilsnode.d.ts","sourceRoot":"","sources":["../src/authutilsnode.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,cAAc,CAAC;AAmBjC,MAAM,WAAW,qBAAqB;IAClC,WAAW,EAAE,MAAM,EAAE,CAAA;CACxB;AAsBD,qBAAa,aAAa;;;IA4BtB,8BAA8B,CAAC,OAAO,EAAE,qBAAqB,SAE9B,GAAG,OAAO,GAAG,QAAQ,GAAG;IAqCjD,uBAAuB,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG;IAyB3D,eAAe,YAAmB,OAAO,MAAM,EAAE,GAAG,CAAC,YAAY,MAAM,KAAG,QAAQ,MAAM,MAAM,EAAE,CAAC,CAgB/F;IAEF,iBAAiB,aAAoB,MAAM,KAAG,QAAQ,MAAM,MAAM,EAAE,CAAC,CAGnE;IAEF,WAAW,UAAiB,MAAM,YAAY,MAAM,aAAa,MAAM,KAAG,QAAQ,MAAM,CAAC,CAgCxF;IAGD,aAAa,QAAS,MAAM,mBAG3B;IAED;;;;;;;OAOG;IACH,mCAAmC,aAAoB,MAAM,oBAAoB,MAAM,SAAS,MAAM,aAAa,MAAM,KAAG,QAAQ,MAAM,CAAC,CA0E1I;CA4FJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"influxDBManager.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAY,QAAQ,EAAgD,MAAM,6BAA6B,CAAA;
|
|
1
|
+
{"version":3,"file":"influxDBManager.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAY,QAAQ,EAAgD,MAAM,6BAA6B,CAAA;AAM9G,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAI9C,OAAO,EAAE,sBAAsB,EAAC,MAAM,0BAA0B,CAAA;AAChE,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAA;AAC7D,OAAO,EAA2B,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AA0L7E,qBAAa,eAAe;;;IAyFxB,2BAA2B,CAAC,SAAS,EAAE,MAAM;IAa7C,IAAI,cAAc,IAAI,sBAAsB,CAE3C;IAED,IAAI,YAAY,IAAI,oBAAoB,CAEvC;IAED,KAAK,sBAEJ;IAED,SAAS,sBA2BR;IAQD,sBAAsB,aAAc,GAAG,EAAE,SAUxC;IAGD,kBAAkB,CAAC,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,UAAU;IAW9E,IAAI,WAAW,IAAI,QAAQ,CAsG1B;IAIK,cAAc,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;CAe/E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"influxDBManagerAgent.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManagerAgent.ts"],"names":[],"mappings":";AAkGA,OAAO,EAAS,QAAQ,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAA;AAIvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAC7E,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;
|
|
1
|
+
{"version":3,"file":"influxDBManagerAgent.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManagerAgent.ts"],"names":[],"mappings":";AAkGA,OAAO,EAAS,QAAQ,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAA;AAIvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAC7E,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AASpF,qBAAa,oBAAqB,SAAQ,mBAAmB;;gBAE7C,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,QAAQ;IAIhE,IAAa,SAAS,IAAI,MAAM,CAE/B;IAqEK,2BAA2B,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAkB7F,uBAAuB,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAkBzF,8BAA8B,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAmBhG,6BAA6B,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAsB/F,cAAc,CAAC,QAAQ,EAAE,QAAQ,EAAE,iBAAiB,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;CA6CnG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"influxDBManagerBase.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManagerBase.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAA;AAEhE,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAE7E,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"influxDBManagerBase.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManagerBase.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAA;AAEhE,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAE7E,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAI9C,qBAAa,mBAAmB;;gBAMhB,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,QAAQ;IAKhE,IAAI,OAAO,4BAEV;IACD,IAAI,QAAQ,aAEX;IAED,IAAI,YAAY,IAGM,OAAO,CAD5B;IACD,IAAI,YAAY,CAAC,GAAG,EAAE,OAAO,EAE5B;IAED,IAAI,SAAS,IAAI,MAAM,CAEtB;IAGK,sBAAsB,CAAC,SAAS,EAAE,OAAO,CAAC,GAAG,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE;IAuCxE,sBAAsB,aAAc,GAAG,EAAE,SAUxC;IAED,kBAAkB,CAAC,eAAe,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,EAAE,GAAG,UAAU;IAaxE,cAAc,CAAC,QAAQ,EAAE,QAAQ,EAAE,iBAAiB,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;CAGnG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"influxDBManagerService.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManagerService.ts"],"names":[],"mappings":";AA8GA,OAAO,EAAS,QAAQ,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAA;AAIvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAC7E,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;
|
|
1
|
+
{"version":3,"file":"influxDBManagerService.d.ts","sourceRoot":"","sources":["../../src/influxdb/influxDBManagerService.ts"],"names":[],"mappings":";AA8GA,OAAO,EAAS,QAAQ,EAAE,QAAQ,EAAE,MAAM,6BAA6B,CAAA;AAIvE,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAA;AAE3D,OAAO,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAC7E,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,MAAM,6BAA6B,CAAA;AAgBpF,qBAAa,sBAAuB,SAAQ,mBAAmB;;gBAE/C,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,QAAQ;IAIhE,IAAa,SAAS,IAAI,MAAM,CAE/B;IA6FK,6BAA6B,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAkB/F,yBAAyB,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAmB3F,kCAAkC,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAmBpG,iCAAiC,CAAC,eAAe,EAAE,gBAAgB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAqBnG,cAAc,CAAC,QAAQ,EAAE,QAAQ,EAAE,iBAAiB,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;CA6DnG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instrumentationsubscriber.d.ts","sourceRoot":"","sources":["../src/instrumentationsubscriber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAiC,MAAM,6BAA6B,CAAA;AAOnH,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"instrumentationsubscriber.d.ts","sourceRoot":"","sources":["../src/instrumentationsubscriber.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,WAAW,EAAE,MAAM,eAAe,CAAA;AAC3D,OAAO,EAAE,oBAAoB,EAAE,gBAAgB,EAAiC,MAAM,6BAA6B,CAAA;AAOnH,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAkBnD,MAAM,WAAW,iCAAiC;IAC9C,oBAAoB,EAAE,MAAM,CAAA;IAC5B,MAAM,CAAC,EAAE,WAAW,CAAA;CACvB;AAED,qBAAa,yBAA0B,SAAQ,cAAc;;gBAO7C,OAAO,EAAE,iCAAiC;IAoLtD,SAAS,CAAC,eAAe,EAAE,gBAAgB,EAAE,EAAE,EAAE,CAAC,OAAO,EAAE,oBAAoB,KAAK,IAAI;IAgCxF,WAAW,CAAC,eAAe,EAAE,gBAAgB;IAwBvC,KAAK;IAIL,IAAI;CAIb"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMKafkaManager.d.ts","sourceRoot":"","sources":["../../src/kafka/IMKafkaManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAIpD,OAAO,EAAE,YAAY,EAAuB,MAAM,gBAAgB,CAAA;
|
|
1
|
+
{"version":3,"file":"IMKafkaManager.d.ts","sourceRoot":"","sources":["../../src/kafka/IMKafkaManager.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAIpD,OAAO,EAAE,YAAY,EAAuB,MAAM,gBAAgB,CAAA;AAYlE,qBAAa,cAAc;;;IAiCvB,IAAI,EAAE,IAAI,YAAY,CAErB;IAED,KAAK,QAAa,QAAQ,IAAI,CAAC,CAG9B;IAED,SAAS,QAAa,QAAQ,IAAI,CAAC,CAclC;IAyBK,UAAU,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC;CAqD3E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"masterprocessbase.d.ts","sourceRoot":"","sources":["../src/masterprocessbase.ts"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"masterprocessbase.d.ts","sourceRoot":"","sources":["../src/masterprocessbase.ts"],"names":[],"mappings":";;;;AA4BA,OAAO,EAAE,cAAc,EAAiB,MAAM,kBAAkB,CAAA;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAEnD,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAKnE,qBAAa,iBAAkB,SAAQ,WAAY,YAAW,kBAAkB;;gBAkBhE,OAAO,EAAE,cAAc;IAW1B,0BAA0B,IAAI,IAAI;IAQlC,wBAAwB,IAAI,qBAAqB;IAS1D;;;OAGA;IAEA,kBAAkB,CAAC,GAAG,EAAE,GAAG;IAqI3B,WAAW,sBAMV;IAqBD,UAAU,OAAQ,MAAM,+CAA+C,GAAG,eAAe,OAAO,gBAAgB,OAAO,KAAG,OAAO,CAwBhI;IAED,WAAW,WAAY,OAAO,OAAO,KAAG,IAAI,CAgB3C;IAUD,UAAU,QAAO,IAAI,CAIpB;IAED,UAAU,QAAO,IAAI,CAIpB;IAGD,SAAS,YAAa,GAAG,KAAG,MAAM,CAOjC;IA2ED,aAAa,IAAI,IAAI;IAIrB,IAAa,YAAY,IAAI,OAAO,CAEnC;IAED,kBAAkB,QAAa,QAAQ,IAAI,CAAC,CAE3C;IAED,aAAa,sBA8KZ;IAED,sBAAsB,YAAa,GAAG,QAAQ,GAAG,UAahD;CACJ"}
|
package/types/processbase.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import colors from 'colors';
|
|
2
2
|
import { Gauge, InstrumentBaseTelemetry } from '@nsshunt/stsinstrumentation';
|
|
3
3
|
import { PGAccessLayer } from '@nsshunt/stsdatamanagement';
|
|
4
4
|
import { ProcessOptions } from './processoptions';
|
|
@@ -31,6 +31,6 @@ export declare abstract class ProcessBase extends STSOptionsBase implements IPro
|
|
|
31
31
|
get accessLayer(): PGAccessLayer | null;
|
|
32
32
|
GetNumCPUs: () => Promise<number>;
|
|
33
33
|
LogSystemTelemetry: () => Promise<void>;
|
|
34
|
-
GetSignalColour: (signal: any) =>
|
|
34
|
+
GetSignalColour: (signal: any) => colors.Color;
|
|
35
35
|
}
|
|
36
36
|
//# sourceMappingURL=processbase.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"processbase.d.ts","sourceRoot":"","sources":["../src/processbase.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"processbase.d.ts","sourceRoot":"","sources":["../src/processbase.ts"],"names":[],"mappings":"AAKA,OAAO,MAAM,MAAM,QAAQ,CAAA;AAO3B,OAAO,EAAE,KAAK,EAAE,uBAAuB,EAA+E,MAAM,6BAA6B,CAAA;AAEzJ,OAAO,EAAE,aAAa,EAAyC,MAAM,4BAA4B,CAAA;AAKjG,OAAO,EAAE,cAAc,EAAiB,MAAM,kBAAkB,CAAA;AAChE,OAAO,EAAE,cAAc,EAAc,MAAM,mBAAmB,CAAA;AAG9D,OAAO,EAAE,6BAA6B,EAAyC,qBAAqB,EAEhB,MAAM,6BAA6B,CAAA;AAQvH,OAAO,EAAE,YAAY,EAAE,qBAAqB,EAAe,MAAM,eAAe,CAAA;AAGhF,OAAO,EAAE,8BAA8B,EAAE,8BAA8B,EAAE,MAAM,6BAA6B,CAAA;AAM5G,8BAAsB,WAAY,SAAQ,cAAe,YAAW,YAAY;;gBAShE,OAAO,EAAE,cAAc;IAUnC,IAAa,OAAO,IAAI,cAAc,CAErC;IAED,IAAI,YAAY,IAAI,OAAO,CAE1B;IA2FD,oBAAoB;IA2CpB,wBAAwB,IAAI,qBAAqB;IAIjD,0BAA0B,IAAI,IAAI;IAIlC,cAAc,aAuCb;IAED,gBAAgB,mBAAoB,KAAK,aAAa,uBAAuB,UAI5E;IAED,IAAI,oBAAoB,IAAI,6BAA6B,GAAG,IAAI,CAE/D;IAED,KAAK,YAAa,GAAG,UASpB;IAED,gBAAgB,CAAC,cAAc,EAAE,KAAK,GAAG,OAAO;IAQhD,gBAAgB,sBAMf;IAED;;;OAGA;IACA,eAAe,IAAI,GAAG;IAItB,IAAI,oBAAoB,IAAI,qBAAqB,CAAC,8BAA8B,EAAE,8BAA8B,CAAC,GAAG,IAAI,CAGvH;IAED,IAAI,oBAAoB,CAAC,KAAK,EAAE,qBAAqB,CAAC,8BAA8B,EAAE,8BAA8B,CAAC,GAAG,IAAI,EAG3H;IAgBK,iBAAiB;IAOvB,IAAI,WAAW,IAAI,aAAa,GAAG,IAAI,CAyBtC;IAED,UAAU,QAAa,QAAQ,MAAM,CAAC,CAkBrC;IAED,kBAAkB,sBA0BjB;IAED,eAAe,WAAY,GAAG,kBAQ5B;CACL"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"singleprocessbase.d.ts","sourceRoot":"","sources":["../src/singleprocessbase.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"singleprocessbase.d.ts","sourceRoot":"","sources":["../src/singleprocessbase.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,qBAAqB,EAAE,MAAM,6BAA6B,CAAA;AAEnE,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAIvD,MAAM,MAAM,OAAO,GAAG,CAAC,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,KAAK,IAAI,CAAA;AAEtD,qBAAa,iBAAkB,SAAQ,iBAAkB,YAAW,kBAAkB;IAElF;;;OAGA;gBACY,OAAO,EAAE,cAAc;IAI1B,0BAA0B,IAAI,IAAI;IAWlC,wBAAwB,IAAI,qBAAqB;IAS1D;;;OAGA;IACS,eAAe,IAAI,GAAG;IAI/B,cAAc;IAId,WAAW,IAAI,OAAO,CAAC,OAAO,CAAC;IAmB/B,aAAa,sBAiCZ;IAEK,oBAAoB;IAKjB,kBAAkB,QAAa,QAAQ,IAAI,CAAC,CAEpD;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appmaster.d.ts","sourceRoot":"","sources":["../../src/tcpserver/appmaster.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"appmaster.d.ts","sourceRoot":"","sources":["../../src/tcpserver/appmaster.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA;AAWpD,oBAAY,kBAAkB;IAC1B,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,SAAS,cAAc;IACvB,MAAM,WAAW;CACpB;AAED,MAAM,WAAW,cAAc;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACf;AAED,MAAM,WAAW,QAAQ;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,UAAU,GAAG,IAAI,CAAA;CAC1B;AAED,qBAAa,SAAU,SAAQ,iBAAiB;;gBA0BhC,aAAa,EAAE,cAAc;IA0dzC,aAAa,IAAI,IAAI;CAKxB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appWorkerWSS.d.ts","sourceRoot":"","sources":["../../src/testing/appWorkerWSS.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"appWorkerWSS.d.ts","sourceRoot":"","sources":["../../src/testing/appWorkerWSS.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,iBAAiB,EAA+C,oBAAoB,EAAE,MAAM,YAAY,CAAA;AASjH,oBAAY,0BAA0B;IACrC,OAAO,YAAY,CAAE,oCAAoC;IAEzD,SAAS,mCAAmC;IAC5C,WAAW,qCAAqC;IAChD,oBAAoB,6CAA6C;CACjE;AAED,MAAM,WAAW,iBAAiB;IACjC,QAAQ,EAAE,MAAM,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAEhB,IAAI,EAAE,GAAG,CAAA;CACT;AAED,oBAAY,2BAA2B;IACtC,mBAAmB,6CAA6C;CAChE;AAED,oBAAY,WAAW;IACtB,uBAAuB,4BAA4B;CACnD;AAED,qBAAa,aAAc,SAAQ,iBAAiB;;gBAIpC,OAAO,EAAE,GAAG;IAcxB,yBAAyB,gBAAuB,GAAG,mBAgClD;IAwBD,aAAa,IAAI,GAAG;IAkDpB,IAAI,mBAAmB,IAAI,oBAAoB,GAAG,IAAI,CAKrD;CACJ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workerprocessbase.d.ts","sourceRoot":"","sources":["../src/workerprocessbase.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"workerprocessbase.d.ts","sourceRoot":"","sources":["../src/workerprocessbase.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAA;AAC9C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAA;AACjD,OAAO,EAAiE,kBAAkB,EAAE,MAAM,eAAe,CAAA;AAEjH,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AAMvD;;;;GAIG;AACH,qBAAa,iBAAkB,SAAQ,iBAAkB,YAAW,kBAAkB;;gBAKtE,OAAO,EAAE,cAAc;IAInC,aAAa;IAKb,yBAAyB,CAAC,GAAG,EAAE,GAAG;IAIzB,0BAA0B,IAAI,IAAI;IAwC3C,SAAS,YAAmB,GAAG,KAAG,QAAQ,MAAM,CAAC,CAUhD;IAGD,YAAY,aAAoB,MAAM,WAAW,GAAG,KAAG,QAAQ,UAAU,CAAC,CAWzE;IAED,kBAAkB,QAAa,QAAQ,IAAI,CAAC,CAE3C;IAED,WAAW,sBAMV;IAED,aAAa,sBAmEX;CACL"}
|