[WIP] Refactor everything server to be more modular and use recommended APIs.

* In subscriptions.ts
  - updated inline doc
This commit is contained in:
cliffhall
2025-12-07 00:34:39 -05:00
parent 07867a5dd5
commit 8559fbd5a4

View File

@@ -18,7 +18,7 @@ const transports: Map<string | undefined, Transport> = new Map<
>(); >();
// Interval to send notifications to subscribers // Interval to send notifications to subscribers
let subsUpdateIntervals: Map<string | undefined, NodeJS.Timeout | undefined> = const subsUpdateIntervals: Map<string | undefined, NodeJS.Timeout | undefined> =
new Map<string | undefined, NodeJS.Timeout | undefined>(); new Map<string | undefined, NodeJS.Timeout | undefined>();
/** /**
@@ -151,8 +151,9 @@ export const beginSimulatedResourceUpdates = (transport: Transport) => {
* *
* This function halts any active intervals associated with the provided session ID * This function halts any active intervals associated with the provided session ID
* and removes the session's corresponding entries from resource management collections. * and removes the session's corresponding entries from resource management collections.
* Session ID can be undefined for stdio.
* *
* @param {string} [sessionId] - The unique identifier of the session for which simulated resource updates should be stopped. If not provided, no action is performed. * @param {string} [sessionId]
*/ */
export const stopSimulatedResourceUpdates = (sessionId?: string) => { export const stopSimulatedResourceUpdates = (sessionId?: string) => {
// Remove active intervals // Remove active intervals