/* * Copyright 2017 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 * * 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.springframework.data.redis.core; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; import java.util.Collection; import java.util.List; import java.util.Map; /** * Redis map specific operations working on a hash. * * @author Mark Paluch * @author Christoph Strobl * @since 2.0 */ public interface ReactiveHashOperations<H, HK, HV> { /** * 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<Long> 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<Boolean> 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<HV> get(H key, Object hashKey); /** * Get values for given {@code hashKeys} from hash at {@code key}. * * @param key must not be {@literal null}. * @param hashKeys must not be {@literal null}. * @return */ Mono<List<HV>> multiGet(H key, Collection<HK> 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<Long> 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<Double> increment(H key, HK hashKey, double delta); /** * Get key set (fields) of hash at {@code key}. * * @param key must not be {@literal null}. * @return */ Flux<HK> keys(H key); /** * Get size of hash at {@code key}. * * @param key must not be {@literal null}. * @return */ Mono<Long> 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<Boolean> putAll(H key, Map<? extends HK, ? extends HV> 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<Boolean> 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<Boolean> 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<HV> values(H key); /** * Get entire hash stored at {@code key}. * * @param key must not be {@literal null}. * @return */ Flux<Map.Entry<HK, HV>> entries(H key); /** * Removes the given {@literal key}. * * @param key must not be {@literal null}. */ Mono<Boolean> delete(H key); }