TableTransactionResult Class
- java.
lang. Object - com.
azure. data. tables. models. TableTransactionResult
- com.
public final class TableTransactionResult
A result type returned from calling submitTransaction(List<TableTransactionAction> transactionActions), submitTransactionWithResponse(List<TableTransactionAction> transactionActions, Duration timeout, Context context), submitTransaction(List<TableTransactionAction> transactionActions) or submitTransactionWithResponse(List<TableTransactionAction> transactionActions).
Constructor Summary
Constructor | Description |
---|---|
TableTransactionResult(List<TableTransactionAction> transactionActions, List<TableTransactionActionResponse> transactionActionResponses) |
Create a new TableTransactionResult. |
Method Summary
Modifier and Type | Method and Description |
---|---|
Table |
getTableTransactionActionResponseByRowKey(String rowKey)
Obtain the corresponding TableTransactionActionResponse for a given |
List<Table |
getTransactionActionResponses()
Get all the TableTransactionActionResponse obtained from the submit transaction operation. |
Methods inherited from java.lang.Object
Constructor Details
TableTransactionResult
public TableTransactionResult(List
Create a new TableTransactionResult.
Parameters:
Method Details
getTableTransactionActionResponseByRowKey
public TableTransactionActionResponse getTableTransactionActionResponseByRowKey(String rowKey)
Obtain the corresponding TableTransactionActionResponse for a given rowKey
.
Parameters:
Returns:
rowKey
.getTransactionActionResponses
public List
Get all the TableTransactionActionResponse obtained from the submit transaction operation.
Returns:
Applies to
Azure SDK for Java