Op
Op<
I,E,A> =object
Defined in: Core/Op.ts:64
A reusable description of async work — decoupled from execution strategy and lifetime.
Separate concerns:
- What to do: encoded in the
OpviaOp.create - How to execute: chosen at
Op.interprettime (restartable, exclusive, queue, etc.)
An Op never runs on its own. It only executes when passed to Op.interpret, which
attaches a concurrency strategy and returns a Manager that owns the execution.
Type Parameters
Section titled “Type Parameters”I
E
A