Forcefully cancels the awaited output for a specific client by emitting an empty string, without checking the active agent.
Validates the session and swarm, then proceeds with cancellation regardless of the current agent state.
Runs within a beginContext wrapper for execution context management, logging operations via LoggerService.
Integrates with SessionValidationService (session and swarm retrieval), SwarmValidationService (swarm validation),
SwarmPublicService (output cancellation), and LoggerService (logging).
Unlike cancelOutput, this function skips agent validation and active agent checks, providing a more aggressive cancellation mechanism.
Throws
If session or swarm validation fails, propagated from respective validation services.
cancelOutputForce(clientId:string):Promise<void>
Parameters
clientId: string
The ID of the client whose output is to be canceled, validated against active sessions.
Returns Promise<void>
A promise that resolves when the output cancellation is complete.
Forcefully cancels the awaited output for a specific client by emitting an empty string, without checking the active agent. Validates the session and swarm, then proceeds with cancellation regardless of the current agent state. Runs within a beginContext wrapper for execution context management, logging operations via LoggerService. Integrates with SessionValidationService (session and swarm retrieval), SwarmValidationService (swarm validation), SwarmPublicService (output cancellation), and LoggerService (logging). Unlike cancelOutput, this function skips agent validation and active agent checks, providing a more aggressive cancellation mechanism.
Throws
If session or swarm validation fails, propagated from respective validation services.