# IMQClientOptions.singleQueue property · @imqueue/rpc

Source: https://imqueue.org/api/rpc/latest/rpc.imqclientoptions.singlequeue/
Published: 2026-08-04
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/rpc 3.5.3 — generated reference, not hand-written

Share a single reply queue and transport connection across every client in the process, instead of one per client.

**Signature:**

```typescript
singleQueue?: boolean;
```

## Default Value

false

## Remarks

`queueName` then becomes the shared host-level name rather than a per-client one, and each client keeps a private queue only for subscriptions. Shared-queue teardown is reference-counted, so destroying one client leaves the others working — but stopping one client stops reply delivery for every client in the process.

Use it to bound Redis connections when a process instantiates many clients.

