Type Parameters
- T extends (...args: any[]) => any
Returns (...args: Parameters<T>) => ReturnType<T>
A wrapped function that preserves the original function's signature
and executes it outside of any existing contexts if detected, otherwise runs it directly.
A higher-order function that ensures a provided function executes outside of existing method and execution contexts. Wraps the input function to isolate its execution from any active
MethodContextService
orExecutionContextService
contexts, usingAsyncResource
to create a new, untracked async scope when necessary.Throws
Propagates any errors thrown by the wrapped
run
function during execution.Example
Example
Remarks
This utility leverages
AsyncResource
from Node.js’sasync_hooks
to create a new async scope when eitherMethodContextService.hasContext()
orExecutionContextService.hasContext()
returns true. This ensures the wrapped function runs in an isolated environment, free from inherited context state, which is critical for operations requiring a clean slate (e.g., resetting tracking in the agent swarm system). If no contexts are active, the function executes directly without overhead. Theresource.emitDestroy()
call ensures proper cleanup of the async resource.See