(operation: () => Promise<T> | T)
| 423 | } |
| 424 | |
| 425 | private async runBackendActivation<T>(operation: () => Promise<T> | T): Promise<T> { |
| 426 | return await (this.deps.runBackendActivation?.(operation) ?? operation()); |
| 427 | } |
| 428 | |
| 429 | claimExecution(sessionId: string): RuntimeExecutionClaim { |
| 430 | if (this.stopIntents.has(sessionId)) { |
no outgoing calls
no test coverage detected