(file) Return to DestinationQueue.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / HandlerService

Diff for /pegasus/src/Pegasus/HandlerService/DestinationQueue.cpp between version 1.1.2.2 and 1.1.2.3

version 1.1.2.2, 2012/02/15 17:47:14 version 1.1.2.3, 2013/06/03 22:36:13
Line 686 
Line 686 
     return 0;     return 0;
 } }
  
   void DestinationQueue::setDeliveryRetryAttempts( Uint16 DeliveryRetryAttempts )
   {
       AutoMutex mtx(_intializeMutex);
       _maxDeliveryRetryAttempts = DeliveryRetryAttempts ;
       _sequenceIdentifierLifetimeUsec = _maxDeliveryRetryAttempts *
           _minDeliveryRetryIntervalUsec * 10;
   }
   
   void DestinationQueue::setminDeliveryRetryInterval(
       Uint32 minDeliveryRetryInterval)
   {
       AutoMutex mtx(_intializeMutex);
       _minDeliveryRetryIntervalUsec =  Uint64(minDeliveryRetryInterval)*1000000 ;
       _sequenceIdentifierLifetimeUsec = _maxDeliveryRetryAttempts *
           _minDeliveryRetryIntervalUsec * 10;
   }
   
 void DestinationQueue::getInfo(QueueInfo &qinfo) void DestinationQueue::getInfo(QueueInfo &qinfo)
 { {
     AutoMutex mtx(_queueMutex);     AutoMutex mtx(_queueMutex);
Line 707 
Line 724 
 } }
  
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END
   


Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2