TableTransactionResult Class

  • java.lang.Object
    • com.azure.data.tables.models.TableTransactionResult

public final class TableTransactionResult

Constructor Summary

Constructor Description
TableTransactionResult(List<TableTransactionAction> transactionActions, List<TableTransactionActionResponse> transactionActionResponses)

Create a new TableTransactionResult.

Method Summary

Modifier and Type Method and Description
TableTransactionActionResponse getTableTransactionActionResponseByRowKey(String rowKey)

Obtain the corresponding TableTransactionActionResponse for a given rowKey.

List<TableTransactionActionResponse> getTransactionActionResponses()

Get all the TableTransactionActionResponse obtained from the submit transaction operation.

Methods inherited from java.lang.Object

Constructor Details

TableTransactionResult

public TableTransactionResult(List transactionActions, List transactionActionResponses)

Create a new TableTransactionResult.

Parameters:

transactionActions - The list of TableTransactionAction sent in the request.
transactionActionResponses - The list of TableTransactionActionResponse that correspond to each transaction action.

Method Details

getTableTransactionActionResponseByRowKey

public TableTransactionActionResponse getTableTransactionActionResponseByRowKey(String rowKey)

Obtain the corresponding TableTransactionActionResponse for a given rowKey.

Parameters:

rowKey - The rowKey to look a TableTransactionActionResponse with.

Returns:

The TableTransactionActionResponse that corresponds to the given rowKey.

getTransactionActionResponses

public List getTransactionActionResponses()

Get all the TableTransactionActionResponse obtained from the submit transaction operation.

Returns:

The TableTransactionActionResponse obtained from the submit transaction operation

Applies to