Package io.dapr.client.domain
Class TransactionalStateOperation<T>
java.lang.Object
io.dapr.client.domain.TransactionalStateOperation<T>
public class TransactionalStateOperation<T> extends Object
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TransactionalStateOperation.OperationType
-
Constructor Summary
Constructors Constructor Description TransactionalStateOperation(TransactionalStateOperation.OperationType operationType, State<T> state)
Construct an immutable transactional state operation object. -
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
TransactionalStateOperation.OperationType
getOperation()
State<T>
getRequest()
int
hashCode()
String
toString()
-
Constructor Details
-
TransactionalStateOperation
public TransactionalStateOperation(TransactionalStateOperation.OperationType operationType, State<T> state)Construct an immutable transactional state operation object.- Parameters:
operationType
- The type of operation done.state
- The required state.
-
-
Method Details