Enum mimir::enums::ODPIDeqMode [] [src]

#[repr(u32)]
pub enum ODPIDeqMode { Browse, Locked, Remove, RemoveNoData, }

This enumeration identifies the modes that are possible when dequeuing messages from a queue.

Variants

Read the message without acquiring a lock on the message (equivalent to a SELECT statement).

Read the message and obtain a write lock on the message (equivalent to a SELECT FOR UPDATE statement).

Read the message and update or delete it. This is the default mode. Note that the message may be retained in the queue table based on retention properties.

Confirms receipt of the message but does not deliver the actual message content.

Trait Implementations

impl Clone for ODPIDeqMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ODPIDeqMode
[src]

impl Debug for ODPIDeqMode
[src]

Formats the value using the given formatter.

impl Eq for ODPIDeqMode
[src]

impl Hash for ODPIDeqMode
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq for ODPIDeqMode
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.