modal
    Preparing search index...

    Type Alias QueueGetOptions

    Options to configure a Queue.get() or Queue.getMany() operation.

    type QueueGetOptions = {
        partition?: string;
        timeout?: number;
    }
    Index

    Properties

    Properties

    partition?: string

    Partition to fetch values from, uses default partition if not set.

    timeout?: number

    How long to wait if the queue is empty (default: indefinite).