Interface SagaStore.Entry<T>
- Type Parameters:
T- The type of the Saga
public static interface SagaStore.Entry<T>
Interface describing a Saga entry fetched from a SagaStore.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the Set of association values of the fetched Saga entry.saga()Returns the Saga instance in unserialized form.
-
Method Details
-
associationValues
Set<AssociationValue> associationValues()Returns the Set of association values of the fetched Saga entry.- Returns:
- association values of the Saga
-
saga
T saga()Returns the Saga instance in unserialized form.- Returns:
- the saga instance
-