| Package | Description |
|---|---|
| com.azure.data.tables |
Package containing the classes for Tables Clients.
|
| Modifier and Type | Method and Description |
|---|---|
TableAsyncBatch |
TableAsyncClient.createBatch(String partitionKey)
Creates a new
TableAsyncBatch object. |
TableAsyncBatch |
TableAsyncBatch.createEntity(TableEntity entity)
Inserts an entity into the table.
|
TableAsyncBatch |
TableAsyncBatch.deleteEntity(String rowKey)
Deletes an entity from the table.
|
TableAsyncBatch |
TableAsyncBatch.deleteEntity(String rowKey,
String eTag)
Deletes an entity from the table.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity)
Updates an existing entity by merging the provided entity with the existing entity.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
TableAsyncBatch |
TableAsyncBatch.upsertEntity(TableEntity entity)
Inserts an entity into the table if it does not exist, or merges the entity with the existing entity otherwise.
|
TableAsyncBatch |
TableAsyncBatch.upsertEntity(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
Copyright © 2021 Microsoft Corporation. All rights reserved.