Interface StateEntry<K,​N,​S>

  • Type Parameters:
    K - type of key.
    N - type of namespace.
    S - type of state.
    All Known Implementing Classes:
    CopyOnWriteStateMap.StateMapEntry, StateEntry.SimpleStateEntry

    public interface StateEntry<K,​N,​S>
    Interface of entries in a state backend. Entries are triple of key, namespace, and state.
    • Method Detail

      • getKey

        K getKey()
        Returns the key of this entry.
      • getNamespace

        N getNamespace()
        Returns the namespace of this entry.
      • getState

        S getState()
        Returns the state of this entry.