Package com.azure.data.tables.models
Class TableTransactionResult
- java.lang.Object
-
- com.azure.data.tables.models.TableTransactionResult
-
public final class TableTransactionResult extends Object
-
-
Constructor Summary
Constructors Constructor Description TableTransactionResult(List<TableTransactionAction> transactionActions, List<TableTransactionActionResponse> transactionActionResponses)Create a newTableTransactionResult.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TableTransactionActionResponsegetTableTransactionActionResponseByRowKey(String rowKey)Obtain the correspondingsub-responsefor a givenrowKey.List<TableTransactionActionResponse>getTransactionActionResponses()Get all thesub-responsesobtained from the submit transaction operation.
-
-
-
Constructor Detail
-
TableTransactionResult
public TableTransactionResult(List<TableTransactionAction> transactionActions, List<TableTransactionActionResponse> transactionActionResponses)
Create a newTableTransactionResult.- Parameters:
transactionActions- The list oftransaction actionssent in the request.transactionActionResponses- The list ofresponsesthat correspond to each transaction action.
-
-
Method Detail
-
getTransactionActionResponses
public List<TableTransactionActionResponse> getTransactionActionResponses()
Get all thesub-responsesobtained from the submit transaction operation.- Returns:
- The
sub-responsesobtained from the submit transaction operation
-
getTableTransactionActionResponseByRowKey
public TableTransactionActionResponse getTableTransactionActionResponseByRowKey(String rowKey)
Obtain the correspondingsub-responsefor a givenrowKey.- Parameters:
rowKey- TherowKeyto look asub-responsewith.- Returns:
- The
TableTransactionActionResponsethat corresponds to the givenrowKey.
-
-