All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.kafka.streams.state.ReadOnlyKeyValueStore Maven / Gradle / Ivy

There is a newer version: 3.7.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.kafka.streams.state;

import org.apache.kafka.streams.errors.InvalidStateStoreException;

/**
 * A key-value store that only supports read operations.
 * Implementations should be thread-safe as concurrent reads and writes are expected.
 * 

* Please note that this contract defines the thread-safe read functionality only; it does not * guarantee anything about whether the actual instance is writable by another thread, or * whether it uses some locking mechanism under the hood. For this reason, making dependencies * between the read and write operations on different StateStore instances can cause concurrency * problems like deadlock. * * @param the key type * @param the value type */ public interface ReadOnlyKeyValueStore { /** * Get the value corresponding to this key. * * @param key The key to fetch * @return The value or null if no value is found. * @throws NullPointerException If null is used for key. * @throws InvalidStateStoreException if the store is not initialized */ V get(K key); /** * Get an iterator over a given range of keys. This iterator must be closed after use. * The returned iterator must be safe from {@link java.util.ConcurrentModificationException}s * and must not return null values. * Order is not guaranteed as bytes lexicographical ordering might not represent key order. * * @param from The first key that could be in the range, where iteration starts from. * @param to The last key that could be in the range, where iteration ends. * @return The iterator for this range, from smallest to largest bytes. * @throws NullPointerException If null is used for from or to. * @throws InvalidStateStoreException if the store is not initialized */ KeyValueIterator range(K from, K to); /** * Get a reverse iterator over a given range of keys. This iterator must be closed after use. * The returned iterator must be safe from {@link java.util.ConcurrentModificationException}s * and must not return null values. * Order is not guaranteed as bytes lexicographical ordering might not represent key order. * * @param from The first key that could be in the range, where iteration ends. * @param to The last key that could be in the range, where iteration starts from. * @return The reverse iterator for this range, from largest to smallest key bytes. * @throws NullPointerException If null is used for from or to. * @throws InvalidStateStoreException if the store is not initialized */ default KeyValueIterator reverseRange(K from, K to) { throw new UnsupportedOperationException(); } /** * Return an iterator over all keys in this store. This iterator must be closed after use. * The returned iterator must be safe from {@link java.util.ConcurrentModificationException}s * and must not return null values. * Order is not guaranteed as bytes lexicographical ordering might not represent key order. * * @return An iterator of all key/value pairs in the store, from smallest to largest bytes. * @throws InvalidStateStoreException if the store is not initialized */ KeyValueIterator all(); /** * Return a reverse iterator over all keys in this store. This iterator must be closed after use. * The returned iterator must be safe from {@link java.util.ConcurrentModificationException}s * and must not return null values. * Order is not guaranteed as bytes lexicographical ordering might not represent key order. * * @return An reverse iterator of all key/value pairs in the store, from largest to smallest key bytes. * @throws InvalidStateStoreException if the store is not initialized */ default KeyValueIterator reverseAll() { throw new UnsupportedOperationException(); } /** * Return an approximate count of key-value mappings in this store. *

* The count is not guaranteed to be exact in order to accommodate stores * where an exact count is expensive to calculate. * * @return an approximate count of key-value mappings in the store. * @throws InvalidStateStoreException if the store is not initialized */ long approximateNumEntries(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy