Skip to content

Commit 1f543cf

Browse files
author
Meyn
committed
Update RequestContainer to new structure
1 parent e07fc54 commit 1f543cf

File tree

2 files changed

+236
-138
lines changed

2 files changed

+236
-138
lines changed

Requests/IRequestContainer.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ public interface IRequestContainer<TRequest> : IEnumerable<TRequest>, IRequest w
1414
/// </summary>
1515
int Count { get; }
1616

17-
/// <summary>
18-
/// Represents a task that completes when all the requests currently available in the container have completed.
19-
/// This task does not include requests that may be added to the container in the future.
20-
/// </summary>
21-
Task CurrentTask { get; }
17+
Task WaitForCurrentRequestsAsync(CancellationToken cancellationToken);
2218

2319
/// <summary>
2420
/// Incorporates a <see cref="IRequest"/> into the <see cref="IRequestContainer{TRequest}"/>.

0 commit comments

Comments
 (0)