Package | Description |
---|---|
com.microsoft.azure.storage.table |
This package contains the storage service table classes.
|
Modifier and Type | Method and Description |
---|---|
EntityResolver<?> |
QueryTableOperation.getResolver()
Gets the resolver to project the entity retrieved as a particular type.
|
Modifier and Type | Method and Description |
---|---|
<R> Iterable<R> |
CloudTable.execute(TableQuery<?> query,
EntityResolver<R> resolver)
Executes a query, applying the specified
EntityResolver to the result. |
<R> Iterable<R> |
CloudTable.execute(TableQuery<?> query,
EntityResolver<R> resolver,
TableRequestOptions options,
OperationContext opContext)
Executes a query, applying the specified
EntityResolver to the result, using the
specified TableRequestOptions and OperationContext . |
protected <T extends TableEntity,R> |
CloudTableClient.executeQuerySegmentedImpl(TableQuery<T> queryToExecute,
EntityResolver<R> resolver,
ResultContinuation continuationToken,
TableRequestOptions options,
OperationContext opContext)
Reserved for internal use.
|
<R> ResultSegment<R> |
CloudTable.executeSegmented(TableQuery<?> query,
EntityResolver<R> resolver,
ResultContinuation continuationToken)
Executes a query in segmented mode with the specified
ResultContinuation continuation token,
applying the EntityResolver to the result. |
<R> ResultSegment<R> |
CloudTable.executeSegmented(TableQuery<?> query,
EntityResolver<R> resolver,
ResultContinuation continuationToken,
TableRequestOptions options,
OperationContext opContext)
Executes a query in segmented mode with the specified
ResultContinuation continuation token,
using the specified TableRequestOptions and OperationContext , applying the EntityResolver
to the result. |
protected <T extends TableEntity,R> |
CloudTableClient.generateIteratorForQuery(TableQuery<T> queryRef,
EntityResolver<R> resolver,
TableRequestOptions options,
OperationContext opContext)
Reserved for internal use.
|
static TableOperation |
TableOperation.retrieve(String partitionKey,
String rowKey,
EntityResolver<?> resolver)
A static factory method returning a
TableOperation instance to retrieve the specified table entity and
return a projection of it using the specified resolver. |
void |
TableBatchOperation.retrieve(String partitionKey,
String rowKey,
EntityResolver<?> resolver)
Adds a table operation to retrieve an entity of the specified class type with the specified PartitionKey and
RowKey to the batch operation.
|
protected void |
QueryTableOperation.setResolver(EntityResolver<?> resolver)
Reserved for internal use.
|
Copyright © 2019. All rights reserved.