All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.enhanced.dynamodb.model.PagePublisher Maven / Gradle / Ivy

/*
 * Copyright 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.enhanced.dynamodb.model;

import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.annotations.ThreadSafe;
import software.amazon.awssdk.core.async.SdkPublisher;

/**
 * Represents the result from paginated operations such as scan and query.
 * 

* You can either subscribe to the {@link Page}s or flattened items across all pages via {@link #items()}. * * Example: *

* 1) Subscribing to {@link Page}s *

 * {@code
 *
 * PagePublisher publisher = mappedTable.scan();
 * publisher.subscribe(page -> page.items().forEach(item -> System.out.println(item)))
 *          .exceptionally(failure -> {
 *              failure.printStackTrace();
 *              return null;
 *          });
 * }
 * 
* *

* 2) Subscribing to items across all pages. *

 * {@code
 *
 * PagePublisher publisher = mappedTable.scan();
 * publisher.items()
 *          .subscribe(item -> System.out.println(item))
 *          .exceptionally(failure -> {
 *              failure.printStackTrace();
 *              return null;
 *          });
 * }
 * 
* * @param The modelled type of the object in a page. */ @SdkPublicApi @ThreadSafe public interface PagePublisher extends SdkPublisher> { /** * Creates a flattened items publisher with the underlying page publisher. */ static PagePublisher create(SdkPublisher> publisher) { return publisher::subscribe; } /** * Returns a publisher that can be used to request a stream of items across all pages. * *

* This method is useful if you are interested in subscribing the items in the response pages * instead of the top level pages. */ default SdkPublisher items() { return this.flatMapIterable(Page::items); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy