Class StateEntry.SimpleStateEntry<K,N,S>

java.lang.Object
org.apache.flink.runtime.state.StateEntry.SimpleStateEntry<K,N,S>
All Implemented Interfaces:
StateEntry<K,N,S>
Enclosing interface:
StateEntry<K,N,S>

public static class StateEntry.SimpleStateEntry<K,N,S> extends Object implements StateEntry<K,N,S>
  • Constructor Details

    • SimpleStateEntry

      public SimpleStateEntry(K key, N namespace, S value)
  • Method Details

    • getKey

      public K getKey()
      Description copied from interface: StateEntry
      Returns the key of this entry.
      Specified by:
      getKey in interface StateEntry<K,N,S>
    • getNamespace

      public N getNamespace()
      Description copied from interface: StateEntry
      Returns the namespace of this entry.
      Specified by:
      getNamespace in interface StateEntry<K,N,S>
    • getState

      public S getState()
      Description copied from interface: StateEntry
      Returns the state of this entry.
      Specified by:
      getState in interface StateEntry<K,N,S>