Interface ProcessStore


  • public interface ProcessStore
    Process store is used to persist state throughout a given flow cycle.
    Since:
    0.1.0
    • Method Detail

      • add

        void add​(String key,
                 JsonValue state)
        Adds the state into the store against the key.
        Parameters:
        key - key used to index the state
        state - the state
      • remove

        JsonValue remove​(String key)
        Removes the state out of the store.
        Parameters:
        key - key used to index the state
        Returns:
        the state