Skip to content

Commit

Permalink
More pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jul 22, 2024
1 parent 1cad305 commit 8814fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Foundatio/Jobs/IQueueJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public interface IQueueJob<T> : IJob where T : class
public static class QueueJobExtensions
{
/// <summary>
/// Will run wait for the acquire timeout to expire waiting if there are no queued items. It will then run until the queue is empty.
/// NOTE: The acquire timeout will not be reset until after the first job is processed,
/// Will run wait for the wait timeout to expire waiting if there are no queued items. It will then run until the queue is empty.
/// NOTE: The wait timeout will not be reset until after the first job is processed.
/// </summary>
public static async Task RunUntilEmptyAsync<T>(this IQueueJob<T> job, TimeSpan waitTimeout,
CancellationToken cancellationToken = default) where T : class
Expand Down

0 comments on commit 8814fbe

Please sign in to comment.