# Pipeline Handles

TypeScript source: `services/pipeline-handles.ts`

## Types

### ParsedHandle

Source: `services/pipeline-handles.ts:13`

Parsed input or output handle rendered on a pipeline node.

#### Members

| Name | Type | Description |
| --- | --- | --- |
| `blocking` | `boolean` | Indicates whether this handle blocks when its queue is full or empty. |
| `connected` | `boolean` | Whether the handle participates in at least one rendered edge. |
| `dotColor?` | `PipelineStateDotColor` | Runtime status color rendered next to the handle. |
| `fps?` | `number` | Frames-per-second value from runtime state, when available. |
| `id` | `number` | Numeric handle id from the raw pipeline payload. |
| `maxQueueSize?` | `number` | Maximum observed queue size from runtime state, when available. |
| `name` | `string` | Handle name used as the React Flow handle id. |
| `queueSize` | `number` | Current queue size configured for the handle. |
| `type` | `"input" | "output"` | Direction of the handle on the node. |
