Enum dispatch::QueueAttribute [] [src]

pub enum QueueAttribute {
    Serial,
    Concurrent,
}

The type of a dispatch queue.

Variants

The queue executes blocks serially in FIFO order.

The queue executes blocks concurrently.