Barrier fan-out. Bounded by the executor's [`concurrency_hint`](AgentExecutor::concurrency_hint); input order is preserved and a panicked branch becomes a failed [`StepOutcome`].
(&self, specs: Vec<AgentStepSpec>)
| 224 | /// [`concurrency_hint`](AgentExecutor::concurrency_hint); input order is |
| 225 | /// preserved and a panicked branch becomes a failed [`StepOutcome`]. |
| 226 | pub async fn parallel(&self, specs: Vec<AgentStepSpec>) -> Vec<StepOutcome> { |
| 227 | execute_steps_parallel(Arc::clone(&self.executor), specs, self.step_events.clone()).await |
| 228 | } |
| 229 | |
| 230 | /// A *named* barrier and a resume boundary. |
| 231 | /// |
no test coverage detected