software.amazon.awssdk.services.apigateway.paginators.GetResourcesPublisher Maven / Gradle / Ivy
Show all versions of apigateway Show documentation
/*
* Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.apigateway.paginators;
import java.util.Collections;
import java.util.Iterator;
import java.util.concurrent.CompletableFuture;
import java.util.function.Function;
import org.reactivestreams.Subscriber;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.async.SdkPublisher;
import software.amazon.awssdk.core.pagination.async.AsyncPageFetcher;
import software.amazon.awssdk.core.pagination.async.PaginatedItemsPublisher;
import software.amazon.awssdk.core.pagination.async.ResponsesSubscription;
import software.amazon.awssdk.core.util.PaginatorUtils;
import software.amazon.awssdk.services.apigateway.ApiGatewayAsyncClient;
import software.amazon.awssdk.services.apigateway.model.GetResourcesRequest;
import software.amazon.awssdk.services.apigateway.model.GetResourcesResponse;
import software.amazon.awssdk.services.apigateway.model.Resource;
/**
*
* Represents the output for the
* {@link software.amazon.awssdk.services.apigateway.ApiGatewayAsyncClient#getResourcesPaginator(software.amazon.awssdk.services.apigateway.model.GetResourcesRequest)}
* operation which is a paginated operation. This class is a type of {@link org.reactivestreams.Publisher} which can be
* used to provide a sequence of {@link software.amazon.awssdk.services.apigateway.model.GetResourcesResponse} response
* pages as per demand from the subscriber.
*
*
* When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and
* so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures
* only after you start streaming the data. The subscribe method should be called as a request to start streaming data.
* For more info, see {@link org.reactivestreams.Publisher#subscribe(org.reactivestreams.Subscriber)}. Each call to the
* subscribe method will result in a new {@link org.reactivestreams.Subscription} i.e., a new contract to stream data
* from the starting request.
*
*
*
* The following are few ways to use the response class:
*
* 1) Using the subscribe helper method
*
*
* {@code
* software.amazon.awssdk.services.apigateway.paginators.GetResourcesPublisher publisher = client.getResourcesPaginator(request);
* CompletableFuture future = publisher.subscribe(res -> { // Do something with the response });
* future.get();
* }
*
*
* 2) Using a custom subscriber
*
*
* {@code
* software.amazon.awssdk.services.apigateway.paginators.GetResourcesPublisher publisher = client.getResourcesPaginator(request);
* publisher.subscribe(new Subscriber() {
*
* public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... };
*
*
* public void onNext(software.amazon.awssdk.services.apigateway.model.GetResourcesResponse response) { //... };
* });}
*
*
* As the response is a publisher, it can work well with third party reactive streams implementations like RxJava2.
*
* Note: If you prefer to have control on service calls, use the
* {@link #getResources(software.amazon.awssdk.services.apigateway.model.GetResourcesRequest)} operation.
*
*/
@Generated("software.amazon.awssdk:codegen")
public class GetResourcesPublisher implements SdkPublisher {
private final ApiGatewayAsyncClient client;
private final GetResourcesRequest firstRequest;
private final AsyncPageFetcher nextPageFetcher;
private boolean isLastPage;
public GetResourcesPublisher(ApiGatewayAsyncClient client, GetResourcesRequest firstRequest) {
this(client, firstRequest, false);
}
private GetResourcesPublisher(ApiGatewayAsyncClient client, GetResourcesRequest firstRequest, boolean isLastPage) {
this.client = client;
this.firstRequest = firstRequest;
this.isLastPage = isLastPage;
this.nextPageFetcher = new GetResourcesResponseFetcher();
}
@Override
public void subscribe(Subscriber super GetResourcesResponse> subscriber) {
subscriber.onSubscribe(ResponsesSubscription.builder().subscriber(subscriber).nextPageFetcher(nextPageFetcher).build());
}
/**
* Returns a publisher that can be used to get a stream of data. You need to subscribe to the publisher to request
* the stream of data. The publisher has a helper forEach method that takes in a {@link java.util.function.Consumer}
* and then applies that consumer to each response returned by the service.
*/
public final SdkPublisher items() {
Function> getIterator = response -> {
if (response != null && response.items() != null) {
return response.items().iterator();
}
return Collections.emptyIterator();
};
return PaginatedItemsPublisher.builder().nextPageFetcher(new GetResourcesResponseFetcher()).iteratorFunction(getIterator)
.isLastPage(isLastPage).build();
}
private class GetResourcesResponseFetcher implements AsyncPageFetcher {
@Override
public boolean hasNextPage(final GetResourcesResponse previousPage) {
return PaginatorUtils.isOutputTokenAvailable(previousPage.position());
}
@Override
public CompletableFuture nextPage(final GetResourcesResponse previousPage) {
if (previousPage == null) {
return client.getResources(firstRequest);
}
return client.getResources(firstRequest.toBuilder().position(previousPage.position()).build());
}
}
}