Show / Hide Table of Contents

Class DbSystemPaginators

Collection of helper methods that can be used to provide an enumerator interface to any list operations of DbSystem where multiple pages of data may be fetched. Two styles of enumerators are supported:

  • Enumerating over the Response objects returned by the list operation. These are referred to as ResponseEnumerators, and the methods are suffixed with ResponseEnumerator. For example: listUsersResponseEnumerator.
  • Enumerating over the resources/records being listed. These are referred to as RecordEnumerators, and the methods are suffixed with RecordEnumerator. For example: listUsersRecordEnumerator.
These enumerators abstract away the need to write code to manually handle pagination via looping and using the page tokens. They will automatically fetch more data from the service when required.

As an example, if we were using the ListUsers operation in IdentityService, then the iterator returned by calling a ResponseEnumerator method would iterate over the ListUsersResponse objects returned by each ListUsers call, whereas the enumerables returned by calling a RecordEnumerator method would iterate over the User records and we don't have to deal with ListUsersResponse objects at all. In either case, pagination will be automatically handled so we can iterate until there are no more responses or no more resources/records available.
Inheritance
object
DbSystemPaginators
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class DbSystemPaginators

Constructors

DbSystemPaginators(DbSystemClient)

Declaration
public DbSystemPaginators(DbSystemClient client)
Parameters
Type Name Description
DbSystemClient client

Methods

ListDbSystemsRecordEnumerator(ListDbSystemsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the DbSystemSummary objects contained in responses from the ListDbSystems operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<DbSystemSummary> ListDbSystemsRecordEnumerator(ListDbSystemsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbSystemSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListDbSystemsResponseEnumerator(ListDbSystemsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListDbSystems operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListDbSystemsResponse> ListDbSystemsResponseEnumerator(ListDbSystemsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

In this article
Back to top