Interface ReadWriteSetStore<K,​V>

    • Method Detail

      • putAll

        void putAll​(@Nonnull
                    java.util.Collection<V> values)
        Parameters:
        values - Put all key value pairs form this map into the storage.
      • removeAll

        void removeAll​(java.util.Collection<K> keys)
        Remove the values for the given keys.
        Parameters:
        keys - Map of removed key value pairs.
      • put

        default void put​(@Nonnull
                         V value)
        Parameters:
        value - The value to add.
      • remove

        default void remove​(@Nonnull
                            K key)
        Remove the key value pair from the store.
        Parameters:
        key - The key to remove.