-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathPagedAsyncEnumerable.cs
62 lines (58 loc) · 3.12 KB
/
PagedAsyncEnumerable.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
* Copyright 2016 Google Inc. All Rights Reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file or at
* https://developers.google.com/open-source/licenses/bsd
*/
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Google.Api.Gax
{
/// <summary>
/// An asynchronous sequence of resources obtained via API responses. Application code
/// can treat this as a simple sequence (with API calls automatically being made
/// lazily as more results are required), or call <see cref="AsRawResponses"/> to retrieve
/// one API response at a time, potentially with additional information.
/// </summary>
/// <typeparam name="TResponse">The API response type. Each response contains a page of resources.</typeparam>
/// <typeparam name="TResource">The resource type contained within the response.</typeparam>
public abstract class PagedAsyncEnumerable<TResponse, TResource> : IAsyncEnumerable<TResource>
{
/// <summary>
/// Returns the sequence of raw API responses, each of which contributes a page of
/// resources to this sequence.
/// </summary>
/// <returns>An asynchronous sequence of raw API responses, each containing a page of resources.</returns>
public virtual IAsyncEnumerable<TResponse> AsRawResponses()
{
throw new NotImplementedException();
}
/// <summary>
/// Eagerly (but asynchronously) reads a single page of results with a fixed maximum size. The returned page is guaranteed
/// to have that many results, unless there is no more data available.
/// </summary>
/// <remarks>
/// "Natural" pages returned by the API may contain a smaller number of resources than requested.
/// For example, a request for a page with 100 resources may return a page with 80 resources but
/// a next page token for more to be retrieved. This is suitable for batch-processing, but not
/// for user-visible paging such as in a web application, where fixed-size pages are expected.
/// This method may make more than one API call in order to fill the page, but after the page has been
/// returned, all the data will have been loaded. (In particular, iterating over the items in the page
/// multiple times will not make any further requests.)
/// </remarks>
/// <param name="pageSize">The page size. Must be greater than 0.</param>
/// <param name="cancellationToken">A token to cancel the operation.</param>
/// <returns>An asynchronous operation, the result of which is a page of resources.</returns>
public virtual Task<Page<TResource>> ReadPageAsync(int pageSize, CancellationToken cancellationToken = default(CancellationToken))
{
throw new NotImplementedException();
}
/// <inheritdoc />
public virtual IAsyncEnumerator<TResource> GetAsyncEnumerator(CancellationToken cancellationToken = default)
{
throw new NotImplementedException();
}
}
}