QueueRecord

data class QueueRecord(val name: String, val partitioned: Boolean, val unlogged: Boolean, val createdAt: Instant)(source)

Represents a record of a queue in the system, which holds metadata about the queue's configuration and creation time.

Constructors

Link copied to clipboard
constructor(name: String, partitioned: Boolean, unlogged: Boolean, createdAt: Instant)

Properties

Link copied to clipboard

The timestamp when the queue was created.

Link copied to clipboard

The name of the queue.

Link copied to clipboard

Indicates whether the queue is partitioned.

Link copied to clipboard

Indicates whether the queue is unlogged.