Package kalix.javasdk.testkit
Interface ValueEntityResult<R>
- Type Parameters:
R
- The type of reply that is expected from invoking a command handler
public interface ValueEntityResult<R>
Represents the result of an ValueEntity handling a command when run in through the testkit.
Not for user extension, returned by the testkit.
-
Method Details
-
isReply
boolean isReply()- Returns:
- true if the call had an effect with a reply, false if not
-
getReply
R getReply()- Returns:
- The reply object from the handler if there was one. If the call had an effect without any reply an exception is thrown.
-
isForward
boolean isForward()- Returns:
- true if the call was forwarded, false if not
-
getForward
DeferredCallDetails<?,R> getForward()- Returns:
- An object with details about the forward. If the result was not a forward an exception is thrown.
-
isError
boolean isError()- Returns:
- true if the call was an error, false if not
-
getError
String getError()The error description. If the result was not an error an exception is thrown -
getErrorStatusCode
io.grpc.Status.Code getErrorStatusCode()- Returns:
- The error status code or throws if the effect returned by the action was not an error.
-
stateWasUpdated
boolean stateWasUpdated()- Returns:
- true if the call updated the entity state
-
getUpdatedState
Object getUpdatedState()- Returns:
- The updated state. If the state was not updated an exeption is thrown
-
stateWasDeleted
boolean stateWasDeleted()- Returns:
- true if the call deleted the entity
-
getSideEffects
List<DeferredCallDetails<?,?>> getSideEffects()- Returns:
- The list of side effects
-