Laser queue scan frequency azure webjobs
1 answer
You can use the MaxPollingInterval parameter:
Gets or sets the longest time period to wait before checking for a message when the queue is empty.
You can install this here:
JobHostConfiguration configuration = new JobHostConfiguration();
configuration.Queues.MaxPollingInterval = TimeSpan.FromSeconds(30);
Note that this interval is only used to validate form messages when the queue is empty .
+2
source to share