Interface SagaStore.Entry<T>

Type Parameters:
T - The type of the Saga
Enclosing interface:
SagaStore<T>

public static interface SagaStore.Entry<T>
Interface describing a Saga entry fetched from a SagaStore.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the Set of association values of the fetched Saga entry.
    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