Method: Azure::ServiceBus::Queue#lock_duration

Defined in:
lib/azure/service_bus/queue.rb

#lock_durationObject

LockDuration: XML datetime

Determines the amount of time in seconds in which a message should be locked for processing by a receiver. After this period, the message is unlocked and available for consumption by the next receiver. Settable only at queue creation time:

Range: 0 - 5 minutes. 0 means that the message is not locked Default: 30 seconds



78
79
80
# File 'lib/azure/service_bus/queue.rb', line 78

def lock_duration
  to_interval description['LockDuration']
end