Modifier and Type | Method and Description |
---|---|
default PagePublisher<T> |
DynamoDbAsyncTable.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer)
Executes a query against the primary index of the table using a
QueryConditional expression to retrieve a list of
items matching the given conditions. |
default PagePublisher<T> |
DynamoDbAsyncTable.query(QueryConditional queryConditional)
Executes a query against the primary index of the table using a
QueryConditional expression to retrieve a
list of items matching the given conditions. |
default PagePublisher<T> |
DynamoDbAsyncTable.query(QueryEnhancedRequest request)
Executes a query against the primary index of the table using a
QueryConditional expression to retrieve a list of
items matching the given conditions. |
default PagePublisher<T> |
DynamoDbAsyncTable.scan()
Scans the table and retrieves all items using default settings.
|
default PagePublisher<T> |
DynamoDbAsyncTable.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer)
Scans the table and retrieves all items.
|
default PagePublisher<T> |
DynamoDbAsyncTable.scan(ScanEnhancedRequest request)
Scans the table and retrieves all items.
|
Modifier and Type | Method and Description |
---|---|
PagePublisher<T> |
DefaultDynamoDbAsyncTable.query(Consumer<QueryEnhancedRequest.Builder> requestConsumer) |
PagePublisher<T> |
DefaultDynamoDbAsyncTable.query(QueryConditional queryConditional) |
PagePublisher<T> |
DefaultDynamoDbAsyncTable.query(QueryEnhancedRequest request) |
PagePublisher<T> |
DefaultDynamoDbAsyncTable.scan() |
PagePublisher<T> |
DefaultDynamoDbAsyncTable.scan(Consumer<ScanEnhancedRequest.Builder> requestConsumer) |
PagePublisher<T> |
DefaultDynamoDbAsyncTable.scan(ScanEnhancedRequest request) |
Modifier and Type | Method and Description |
---|---|
default PagePublisher<ItemT> |
PaginatedOperation.executeAsync(TableSchema<ItemT> tableSchema,
OperationContext context,
DynamoDbEnhancedClientExtension extension,
DynamoDbAsyncClient dynamoDbAsyncClient)
Default implementation of a complete non-blocking asynchronous execution of this operation against either the
primary or a secondary index.
|
default PagePublisher<ItemT> |
PaginatedTableOperation.executeOnPrimaryIndexAsync(TableSchema<ItemT> tableSchema,
String tableName,
DynamoDbEnhancedClientExtension extension,
DynamoDbAsyncClient dynamoDbAsyncClient)
Default implementation of a complete non-blocking asynchronous execution of this operation against the primary
index.
|
Modifier and Type | Method and Description |
---|---|
static <T> PagePublisher<T> |
PagePublisher.create(SdkPublisher<Page<T>> publisher)
Creates a flattened items publisher with the underlying page publisher.
|
Copyright © 2022. All rights reserved.