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

org.springframework.data.redis.core.ReactiveHashOperations Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
/*
 * Copyright 2017-2024 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.data.redis.core;

import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

import java.nio.ByteBuffer;
import java.util.Collection;
import java.util.List;
import java.util.Map;

/**
 * Reactive Redis operations for Hash Commands.
 * 

* Streams of methods returning {@code Mono} or {@code Flux} are terminated with * {@link org.springframework.dao.InvalidDataAccessApiUsageException} when * {@link org.springframework.data.redis.serializer.RedisElementReader#read(ByteBuffer)} returns {@code null} for a * particular element as Reactive Streams prohibit the usage of {@code null} values. * * @author Mark Paluch * @author Christoph Strobl * @since 2.0 */ public interface ReactiveHashOperations { /** * Delete given hash {@code hashKeys} from the hash at {@literal key}. * * @param key must not be {@literal null}. * @param hashKeys must not be {@literal null}. * @return */ Mono remove(H key, Object... hashKeys); /** * Determine if given hash {@code hashKey} exists. * * @param key must not be {@literal null}. * @param hashKey must not be {@literal null}. * @return */ Mono hasKey(H key, Object hashKey); /** * Get value for given {@code hashKey} from hash at {@code key}. * * @param key must not be {@literal null}. * @param hashKey must not be {@literal null}. * @return */ Mono get(H key, Object hashKey); /** * Get values for given {@code hashKeys} from hash at {@code key}. Values are in the order of the requested keys. * Absent field values are represented using {@code null} in the resulting {@link List}. * * @param key must not be {@literal null}. * @param hashKeys must not be {@literal null}. * @return */ Mono> multiGet(H key, Collection hashKeys); /** * Increment {@code value} of a hash {@code hashKey} by the given {@code delta}. * * @param key must not be {@literal null}. * @param hashKey must not be {@literal null}. * @param delta * @return */ Mono increment(H key, HK hashKey, long delta); /** * Increment {@code value} of a hash {@code hashKey} by the given {@code delta}. * * @param key must not be {@literal null}. * @param hashKey must not be {@literal null}. * @param delta * @return */ Mono increment(H key, HK hashKey, double delta); /** * Return a random hash key (aka field) from the hash stored at {@code key}. * * @param key must not be {@literal null}. * @return * @since 2.6 * @see Redis Documentation: HRANDFIELD */ Mono randomKey(H key); /** * Return a random entry from the hash stored at {@code key}. * * @param key must not be {@literal null}. * @return * @since 2.6 * @see Redis Documentation: HRANDFIELD */ Mono> randomEntry(H key); /** * Return random hash keys (aka fields) from the hash stored at {@code key}. If the provided {@code count} argument is * positive, return a list of distinct hash keys, capped either at {@code count} or the hash size. If {@code count} is * negative, the behavior changes and the command is allowed to return the same hash key multiple times. In this case, * the number of returned fields is the absolute value of the specified count. * * @param key must not be {@literal null}. * @param count number of fields to return. * @return * @since 2.6 * @see Redis Documentation: HRANDFIELD */ Flux randomKeys(H key, long count); /** * Return random entries from the hash stored at {@code key}. If the provided {@code count} argument is positive, * return a list of distinct entries, capped either at {@code count} or the hash size. If {@code count} is negative, * the behavior changes and the command is allowed to return the same entry multiple times. In this case, the number * of returned fields is the absolute value of the specified count. * * @param key must not be {@literal null}. * @param count number of fields to return. * @return {@literal null} if key does not exist or when used in pipeline / transaction. * @since 2.6 * @see Redis Documentation: HRANDFIELD */ Flux> randomEntries(H key, long count); /** * Get key set (fields) of hash at {@code key}. * * @param key must not be {@literal null}. * @return */ Flux keys(H key); /** * Get size of hash at {@code key}. * * @param key must not be {@literal null}. * @return */ Mono size(H key); /** * Set multiple hash fields to multiple values using data provided in {@code m}. * * @param key must not be {@literal null}. * @param map must not be {@literal null}. */ Mono putAll(H key, Map map); /** * Set the {@code value} of a hash {@code hashKey}. * * @param key must not be {@literal null}. * @param hashKey must not be {@literal null}. * @param value */ Mono put(H key, HK hashKey, HV value); /** * Set the {@code value} of a hash {@code hashKey} only if {@code hashKey} does not exist. * * @param key must not be {@literal null}. * @param hashKey must not be {@literal null}. * @param value * @return */ Mono putIfAbsent(H key, HK hashKey, HV value); /** * Get entry set (values) of hash at {@code key}. * * @param key must not be {@literal null}. * @return */ Flux values(H key); /** * Get entire hash stored at {@code key}. * * @param key must not be {@literal null}. * @return */ Flux> entries(H key); /** * Use a {@link Flux} to iterate over entries in the hash at {@code key}. The resulting {@link Flux} acts as a cursor * and issues {@code HSCAN} commands itself as long as the subscriber signals demand. * * @param key must not be {@literal null}. * @return the {@link Flux} emitting the {@link java.util.Map.Entry entries} on by one or an {@link Flux#empty() empty * flux} if the key does not exist. * @throws IllegalArgumentException when the given {@code key} is {@literal null}. * @see Redis Documentation: HSCAN * @since 2.1 */ default Flux> scan(H key) { return scan(key, ScanOptions.NONE); } /** * Use a {@link Flux} to iterate over entries in the hash at {@code key} given {@link ScanOptions}. The resulting * {@link Flux} acts as a cursor and issues {@code HSCAN} commands itself as long as the subscriber signals demand. * * @param key must not be {@literal null}. * @param options must not be {@literal null}. Use {@link ScanOptions#NONE} instead. * @return the {@link Flux} emitting the {@link java.util.Map.Entry entries} on by one or an {@link Flux#empty() empty * flux} if the key does not exist. * @throws IllegalArgumentException when one of the required arguments is {@literal null}. * @see Redis Documentation: HSCAN * @since 2.1 */ Flux> scan(H key, ScanOptions options); /** * Removes the given {@literal key}. * * @param key must not be {@literal null}. */ Mono delete(H key); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy