Interface WindowStore<K,​V>

    • Method Detail

      • put

        void put​(K key,
                 V value)
        Put a key-value pair with the current wall-clock time as the timestamp into the corresponding window
        Parameters:
        key - The key to associate the value to
        value - The value to update, it can be null; if the serialized bytes are also null it is interpreted as deletes
        Throws:
        java.lang.NullPointerException - If null is used for key.
      • put

        void put​(K key,
                 V value,
                 long timestamp)
        Put a key-value pair with the given timestamp into the corresponding window
        Parameters:
        key - The key to associate the value to
        value - The value; can be null
        Throws:
        java.lang.NullPointerException - If null is used for key.