dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleQueueOptions Class / OracleQueueOptions Constructor / OracleQueueOptions Constructor(OracleQueueType,Double,Double,Double,String)
The queue type, one from OracleQueueType. Specifies if the queue is normal, service or nonpersistent with RAW message payload.
The number of retries to dequeue the message in the Remove mode. 0 means retries can be unlimited.
Delay time, in seconds, before the message can be processed again after the previous attempt. 0 means the retry can be made as soon as possible.
Time in seconds while the message is retained in the queue table after being dequeued. 0 for no retention.
User-specified description of the queue.

In This Topic
    OracleQueueOptions Constructor(OracleQueueType,Double,Double,Double,String)
    In This Topic
    Initializes a new instance of the OracleQueueOptions class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal queueType As OracleQueueType, _
       ByVal maxRetries As Double, _
       ByVal retryDelay As Double, _
       ByVal retentionTime As Double, _
       ByVal comment As String _
    )
    public OracleQueueOptions( 
       OracleQueueType queueType,
       double maxRetries,
       double retryDelay,
       double retentionTime,
       string comment
    )

    Parameters

    queueType
    The queue type, one from OracleQueueType. Specifies if the queue is normal, service or nonpersistent with RAW message payload.
    maxRetries
    The number of retries to dequeue the message in the Remove mode. 0 means retries can be unlimited.
    retryDelay
    Delay time, in seconds, before the message can be processed again after the previous attempt. 0 means the retry can be made as soon as possible.
    retentionTime
    Time in seconds while the message is retained in the queue table after being dequeued. 0 for no retention.
    comment
    User-specified description of the queue.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also