ParallelTools
Calls that went out together, collapsed to one row until you want the detail.
Install it:
npx shadcn add @ambientui/parallel-toolsLive
Read 4 files in parallel
Behavior
- ·Concurrency is an implementation fact — stacking five rows makes it look like five decisions.
- ·One row states the batch and its outcome; the batch reads as failed if any call inside it did.
- ·Opening it shows each call with its own timing, which is the only reason anyone opens it.
- ·Closed by default: the summary is usually the whole story.
When to use
- ·Any fan-out — reading several files, querying several sources at once.
When not to
- ·For sequential calls, where order carries meaning that a batch hides.
- ·For two calls; a batch of two is just two rows.