Interface: BroadcastOptions
Defined in: glide-mq/src/types.ts:131
Extends
Properties
client?
optional client?: Client;Defined in: glide-mq/src/types.ts:71
Pre-existing GLIDE client for non-blocking commands. When provided, the component does NOT own this client - close() will not destroy it. Must not be used for blocking reads (XREADGROUP BLOCK / XREAD BLOCK).
Inherited from
compression?
optional compression?: "none" | "gzip";Defined in: glide-mq/src/types.ts:76
Enable transparent compression of job data. Default: 'none'.
Inherited from
connection?
optional connection?: ConnectionOptions;Defined in: glide-mq/src/types.ts:65
Connection options for creating a new client. Required unless client is provided.
Inherited from
deadLetterQueue?
optional deadLetterQueue?: DeadLetterQueueOptions;Defined in: glide-mq/src/types.ts:74
Dead letter queue configuration. Jobs that exhaust retries are moved here.
Inherited from
events?
optional events?: boolean;Defined in: glide-mq/src/types.ts:87
Emit events (e.g., 'added') on the events stream when adding jobs. Default: true.
Inherited from
maxMessages?
optional maxMessages?: number;Defined in: glide-mq/src/types.ts:133
Max messages to retain in stream (must be a positive integer). Trimmed exactly (hard limit) on each publish. Opt-in; no trimming by default.
prefix?
optional prefix?: string;Defined in: glide-mq/src/types.ts:72
Inherited from
serializer?
optional serializer?: Serializer;Defined in: glide-mq/src/types.ts:85
Custom serializer for job data and return values. Default: JSON.
Important: The same serializer must be used across all Queue, Worker, and FlowProducer instances that operate on the same queue. A mismatch causes silent data corruption - the consumer will see {} and the job's deserializationFailed flag will be true.