Graphorin API reference v0.7.0
Graphorin API reference / @graphorin/agent / fanout / FanOutResult
Interface: FanOutResult<TOutput>
Defined in: packages/agent/src/fanout/index.ts:96
Aggregate result returned by Agent.fanOut(...).
Stable
Type Parameters
| Type Parameter | Default type |
|---|---|
TOutput | unknown |
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
children | readonly | readonly ChildResult<TOutput>[] | - | packages/agent/src/fanout/index.ts:99 |
fanOutId | readonly | string | - | packages/agent/src/fanout/index.ts:97 |
mergeDurationMs | readonly | number | - | packages/agent/src/fanout/index.ts:100 |
output | readonly | TOutput | - | packages/agent/src/fanout/index.ts:98 |
usage | readonly | Usage | Sum of every usage-reporting child's usage (W-033); zero when no child reported. The fan-out helper never mutates the parent run's live state (it runs outside the loop and would race it) - folding this into the parent run's accounting is the caller's decision. | packages/agent/src/fanout/index.ts:107 |