'Declaration Public Sub AlterQueue( _ ByVal maxRetries As Integer, _ ByVal retryDelay As Double, _ ByVal retentionTime As Double, _ ByVal comment As String _ )
public void AlterQueue( int maxRetries, double retryDelay, double retentionTime, string comment )
Parameters
- maxRetries
- Limits the number of times a dequeue with OracleQueueDequeueMode.Remove mode can be attempted on a message. The maximum value of maxRetries is 2^31 -1. If this parameter less than zero, it is ignored.
- retryDelay
- Delay time in seconds before this message is scheduled for processing again after an application rollback. If this parameter less than zero, it is ignored.
- retentionTime
- Retention time in seconds for which a message is retained in the queue table after being dequeued. If this parameter less than zero, it is ignored.
- comment
- User-specified description of the queue. If this parameter is null or is string.Empty, it is ignored.