# ClusteredRedisQueue.emit() method · @imqueue/core

Source: https://imqueue.org/api/core/latest/core.clusteredredisqueue.emit/
Published: 2026-08-04
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/core 3.3.2 — generated reference, not hand-written

Emits an event on every server's queue and on the internal template, so each listener registered through this class runs once per server.

**Signature:**

```typescript
emit(...args: any[]): boolean;
```

## Parameters


| Parameter | Type | Description |
| --- | --- | --- |
| args | any\[\] | the arguments `EventEmitter.emit` accepts |


**Returns:**

boolean

always `true`

## Remarks

The per-emitter results are discarded, so unlike `EventEmitter.emit` the return value does not report whether the event had any listeners — it is `true` even for an empty cluster with no listeners at all.

