Enum mimir::enums::ODPIDeqNavigation [] [src]

#[repr(u32)]
pub enum ODPIDeqNavigation { FirstMsg, NextTransaction, NextMsg, }

This enumeration identifies the method used for determining which message is to be dequeued from a queue.

Variants

Retrieves the first available message that matches the search criteria. This resets the position to the beginning of the queue.

Skips the remainder of the current transaction group (if any) and retrieves the first message of the next transaction group. This option can only be used if message grouping is enabled for the queue.

Retrieves the next available message that matches the search criteria. This is the default method.

Trait Implementations

impl Clone for ODPIDeqNavigation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ODPIDeqNavigation
[src]

impl Debug for ODPIDeqNavigation
[src]

Formats the value using the given formatter.

impl Eq for ODPIDeqNavigation
[src]

impl Hash for ODPIDeqNavigation
[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 ODPIDeqNavigation
[src]

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

This method tests for !=.