builder.io 1.12.0 → 1.12.2

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.
@@ -7,6 +7,8 @@ export declare class ConnectionTracker {
7
7
  private connections;
8
8
  private maxConnections;
9
9
  private sys;
10
+ private healthCheckInterval;
11
+ private readonly HEALTH_CHECK_INTERVAL_MS;
10
12
  constructor(sys: DevToolsSys);
11
13
  /**
12
14
  * Add a connection to tracking
@@ -24,4 +26,16 @@ export declare class ConnectionTracker {
24
26
  * Clean up all connections
25
27
  */
26
28
  cleanup(): void;
29
+ /**
30
+ * Start health monitoring for connections
31
+ */
32
+ private startHealthMonitoring;
33
+ /**
34
+ * Stop health monitoring
35
+ */
36
+ private stopHealthMonitoring;
37
+ /**
38
+ * Perform health check on all connections
39
+ */
40
+ private performHealthCheck;
27
41
  }