Class ListStateAdaptor<K,​N,​V>

    • Method Detail

      • asyncUpdate

        public org.apache.flink.api.common.state.v2.StateFuture<Void> asyncUpdate​(List<V> values)
        Specified by:
        asyncUpdate in interface org.apache.flink.api.common.state.v2.ListState<K>
      • update

        public void update​(List<V> values)
        Specified by:
        update in interface org.apache.flink.api.common.state.v2.ListState<K>
      • asyncAddAll

        public org.apache.flink.api.common.state.v2.StateFuture<Void> asyncAddAll​(List<V> values)
        Specified by:
        asyncAddAll in interface org.apache.flink.api.common.state.v2.ListState<K>
      • addAll

        public void addAll​(List<V> values)
        Specified by:
        addAll in interface org.apache.flink.api.common.state.v2.ListState<K>
      • asyncGet

        public org.apache.flink.api.common.state.v2.StateFuture<org.apache.flink.api.common.state.v2.StateIterator<V>> asyncGet()
        Specified by:
        asyncGet in interface org.apache.flink.api.common.state.v2.AppendingState<K,​N,​V>
      • get

        public Iterable<V> get()
        Specified by:
        get in interface org.apache.flink.api.common.state.v2.AppendingState<K,​N,​V>
      • asyncAdd

        public org.apache.flink.api.common.state.v2.StateFuture<Void> asyncAdd​(V value)
        Specified by:
        asyncAdd in interface org.apache.flink.api.common.state.v2.AppendingState<K,​N,​V>
      • add

        public void add​(V value)
        Specified by:
        add in interface org.apache.flink.api.common.state.v2.AppendingState<K,​N,​V>