Function listenPolicyEvent

Subscribes to policy-specific events on the swarm bus service for a specific client and executes a callback for each event.

This function sets up a listener for events on the "policy-bus" topic associated with a given client ID, invoking the provided callback with the event data whenever a policy event is received. It is wrapped in beginContext for a clean execution environment and logs the operation via loggerService. The callback is queued using functools-kit to ensure sequential processing of events. The function supports a wildcard client ID ("*") for listening to all clients or validates a specific client session. It returns an unsubscribe function to stop listening.

If the clientId is not "*" and no active session exists for it.

const unsubscribe = listenPolicyEvent("client-123", (event) => console.log(event));
// Logs each policy event for "client-123"
unsubscribe(); // Stops listening
  • Parameters

    • clientId: string

      The ID of the client to subscribe to policy events for, or "*" to listen to all clients.

    • fn: (event: IBusEvent) => void

      The callback function to execute when a policy event is received, passed the event object.

    Returns () => void

    A function to unsubscribe from the policy event listener.