@hocuspocus/extension-throttle 2.13.6 → 2.13.7
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.
|
@@ -65,6 +65,12 @@ export declare class Redis implements Extension {
|
|
|
65
65
|
locks: Map<string, Redlock.Lock>;
|
|
66
66
|
logger: Debugger;
|
|
67
67
|
messagePrefix: Buffer;
|
|
68
|
+
/**
|
|
69
|
+
* When we have a high frequency of updates to a document we don't need tons of setTimeouts
|
|
70
|
+
* piling up, so we'll track them to keep it to the most recent per document.
|
|
71
|
+
*/
|
|
72
|
+
private pendingDisconnects;
|
|
73
|
+
private pendingAfterStoreDocumentResolves;
|
|
68
74
|
constructor(configuration: Partial<Configuration>);
|
|
69
75
|
onConfigure({ instance }: onConfigurePayload): Promise<void>;
|
|
70
76
|
private getKey;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hocuspocus/extension-throttle",
|
|
3
|
-
"version": "2.13.
|
|
3
|
+
"version": "2.13.7",
|
|
4
4
|
"description": "hocuspocus throttle extension",
|
|
5
5
|
"homepage": "https://hocuspocus.dev",
|
|
6
6
|
"keywords": [
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@hocuspocus/server": "^2.13.
|
|
31
|
+
"@hocuspocus/server": "^2.13.7"
|
|
32
32
|
},
|
|
33
33
|
"gitHead": "b3454a4ca289a84ddfb7fa5607a2d4b8d5c37e9d"
|
|
34
34
|
}
|