fixparser-plugin-messagestore-kdb 0.0.1-init → 9.0.1-a7a707e7
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/package.json +1 -1
- package/types/MessageStoreKDB.d.ts +10 -1
package/package.json
CHANGED
|
@@ -26,7 +26,16 @@ export declare class MessageStoreKDB implements IMessageStore<IMessage> {
|
|
|
26
26
|
private readonly writeInterval;
|
|
27
27
|
private readonly writeIntervalId;
|
|
28
28
|
private maxBufferSize;
|
|
29
|
-
constructor({
|
|
29
|
+
constructor({
|
|
30
|
+
host,
|
|
31
|
+
port,
|
|
32
|
+
tableName,
|
|
33
|
+
parser,
|
|
34
|
+
logger,
|
|
35
|
+
onReady,
|
|
36
|
+
maxBufferSize,
|
|
37
|
+
writeInterval,
|
|
38
|
+
}: MessageStoreKDBOptions);
|
|
30
39
|
private send;
|
|
31
40
|
private sendAsync;
|
|
32
41
|
private writeToKDB;
|