spring-data-redis ReactiveNumberCommands 源码
spring-data-redis ReactiveNumberCommands 代码
文件路径:/src/main/java/org/springframework/data/redis/connection/ReactiveNumberCommands.java
/*
* Copyright 2016-2022 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.connection;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import java.nio.ByteBuffer;
import org.reactivestreams.Publisher;
import org.springframework.data.redis.connection.ReactiveRedisConnection.KeyCommand;
import org.springframework.data.redis.connection.ReactiveRedisConnection.NumericResponse;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* Redis numeric commands executed using reactive infrastructure.
*
* @author Christoph Strobl
* @author Mark Paluch
* @since 2.0
*/
public interface ReactiveNumberCommands {
/**
* Increment value of {@literal key} by 1.
*
* @param key must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/incr">Redis Documentation: INCR</a>
*/
default Mono<Long> incr(ByteBuffer key) {
Assert.notNull(key, "Key must not be null");
return incr(Mono.just(new KeyCommand(key))).next().map(NumericResponse::getOutput);
}
/**
* Increment value of {@literal key} by 1.
*
* @param keys must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/incr">Redis Documentation: INCR</a>
*/
Flux<NumericResponse<KeyCommand, Long>> incr(Publisher<KeyCommand> keys);
/**
* {@code INCRBY} command parameters.
*
* @author Christoph Strobl
* @see <a href="https://redis.io/commands/incrby">Redis Documentation: INCRBY</a>
*/
class IncrByCommand<T extends Number> extends KeyCommand {
private @Nullable T value;
private IncrByCommand(ByteBuffer key, @Nullable T value) {
super(key);
this.value = value;
}
/**
* Creates a new {@link IncrByCommand} given a {@link ByteBuffer key}.
*
* @param key must not be {@literal null}.
* @return a new {@link IncrByCommand} for {@link ByteBuffer key}.
*/
public static <T extends Number> IncrByCommand<T> incr(ByteBuffer key) {
Assert.notNull(key, "Key must not be null");
return new IncrByCommand<>(key, null);
}
/**
* Applies the numeric {@literal value}. Constructs a new command instance with all previously configured
* properties.
*
* @param value must not be {@literal null}.
* @return a new {@link IncrByCommand} with {@literal value} applied.
*/
public IncrByCommand<T> by(T value) {
Assert.notNull(value, "Value must not be null");
return new IncrByCommand<>(getKey(), value);
}
/**
* @return can be {@literal null}.
*/
@Nullable
public T getValue() {
return value;
}
}
/**
* Increment value of {@literal key} by {@literal value}.
*
* @param key must not be {@literal null}.
* @param value must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/incrby">Redis Documentation: INCRBY</a>
* @see <a href="https://redis.io/commands/incrbyfloat">Redis Documentation: INCRBYFLOAT</a>
*/
default <T extends Number> Mono<T> incrBy(ByteBuffer key, T value) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(value, "Value must not be null");
return incrBy(Mono.just(IncrByCommand.<T> incr(key).by(value))).next().map(NumericResponse::getOutput);
}
/**
* Increment value of {@literal key} by {@literal value}.
*
* @param commands must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/incrby">Redis Documentation: INCRBY</a>
* @see <a href="https://redis.io/commands/incrbyfloat">Redis Documentation: INCRBYFLOAT</a>
*/
<T extends Number> Flux<NumericResponse<ReactiveNumberCommands.IncrByCommand<T>, T>> incrBy(
Publisher<ReactiveNumberCommands.IncrByCommand<T>> commands);
/**
* {@code DECRBY} command parameters.
*
* @author Christoph Strobl
* @see <a href="https://redis.io/commands/decrby">Redis Documentation: DECRBY</a>
*/
class DecrByCommand<T extends Number> extends KeyCommand {
private @Nullable T value;
private DecrByCommand(ByteBuffer key, @Nullable T value) {
super(key);
this.value = value;
}
/**
* Creates a new {@link DecrByCommand} given a {@link ByteBuffer key}.
*
* @param key must not be {@literal null}.
* @return a new {@link DecrByCommand} for {@link ByteBuffer key}.
*/
public static <T extends Number> DecrByCommand<T> decr(ByteBuffer key) {
Assert.notNull(key, "Key must not be null");
return new DecrByCommand<>(key, null);
}
/**
* Applies the numeric {@literal value}. Constructs a new command instance with all previously configured
* properties.
*
* @param value must not be {@literal null}.
* @return a new {@link DecrByCommand} with {@literal value} applied.
*/
public DecrByCommand<T> by(T value) {
Assert.notNull(value, "Value must not be null");
return new DecrByCommand<>(getKey(), value);
}
/**
* @return can be {@literal null}.
*/
@Nullable
public T getValue() {
return value;
}
}
/**
* Decrement value of {@literal key} by 1.
*
* @param key must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/decr">Redis Documentation: DECR</a>
*/
default Mono<Long> decr(ByteBuffer key) {
Assert.notNull(key, "Key must not be null");
return decr(Mono.just(new KeyCommand(key))).next().map(NumericResponse::getOutput);
}
/**
* Decrement value of {@literal key} by 1.
*
* @param keys must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/decr">Redis Documentation: DECR</a>
*/
Flux<NumericResponse<KeyCommand, Long>> decr(Publisher<KeyCommand> keys);
/**
* Decrement value of {@literal key} by {@literal value}.
*
* @param key must not be {@literal null}.
* @param value must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/decrby">Redis Documentation: DECRBY</a>
*/
default <T extends Number> Mono<T> decrBy(ByteBuffer key, T value) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(value, "Value must not be null");
return decrBy(Mono.just(DecrByCommand.<T> decr(key).by(value))).next().map(NumericResponse::getOutput);
}
/**
* Decrement value of {@literal key} by {@literal value}.
*
* @param commands must not be {@literal null}.
* @return
*/
<T extends Number> Flux<NumericResponse<DecrByCommand<T>, T>> decrBy(Publisher<DecrByCommand<T>> commands);
/**
* {@code HINCRBY} command parameters.
*
* @author Christoph Strobl
* @see <a href="https://redis.io/commands/hincrby">Redis Documentation: HINCRBY</a>
*/
class HIncrByCommand<T extends Number> extends KeyCommand {
private final ByteBuffer field;
private final @Nullable T value;
private HIncrByCommand(@Nullable ByteBuffer key, ByteBuffer field, @Nullable T value) {
super(key);
this.field = field;
this.value = value;
}
/**
* Creates a new {@link HIncrByCommand} given a {@link ByteBuffer key}.
*
* @param field must not be {@literal null}.
* @return a new {@link HIncrByCommand} for {@link ByteBuffer key}.
*/
public static <T extends Number> HIncrByCommand<T> incr(ByteBuffer field) {
Assert.notNull(field, "Field must not be null");
return new HIncrByCommand<>(null, field, null);
}
/**
* Applies the numeric {@literal value}. Constructs a new command instance with all previously configured
* properties.
*
* @param value must not be {@literal null}.
* @return a new {@link HIncrByCommand} with {@literal value} applied.
*/
public HIncrByCommand<T> by(T value) {
Assert.notNull(value, "Value must not be null");
return new HIncrByCommand<>(getKey(), field, value);
}
/**
* Applies the {@literal key}. Constructs a new command instance with all previously configured properties.
*
* @param key must not be {@literal null}.
* @return a new {@link HIncrByCommand} with {@literal key} applied.
*/
public HIncrByCommand<T> forKey(ByteBuffer key) {
Assert.notNull(key, "Key must not be null");
return new HIncrByCommand<>(key, field, value);
}
/**
* @return can be {@literal null}.
*/
@Nullable
public T getValue() {
return value;
}
/**
* @return never {@literal null}.
*/
public ByteBuffer getField() {
return field;
}
}
/**
* Increment {@literal value} of a hash {@literal field} by the given {@literal value}.
*
* @param key must not be {@literal null}.
* @param field must not be {@literal null}.
* @param value must not be {@literal null}.
* @return
* @see <a href="https://redis.io/commands/hincrby">Redis Documentation: HINCRBY</a>
*/
default <T extends Number> Mono<T> hIncrBy(ByteBuffer key, ByteBuffer field, T value) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(field, "Field must not be null");
Assert.notNull(value, "Value must not be null");
return hIncrBy(Mono.just(HIncrByCommand.<T> incr(field).by(value).forKey(key))).next()
.map(NumericResponse::getOutput);
}
/**
* Increment {@literal value} of a hash {@literal field} by the given {@literal value}.
*
* @return
* @see <a href="https://redis.io/commands/hincrby">Redis Documentation: HINCRBY</a>
*/
<T extends Number> Flux<NumericResponse<HIncrByCommand<T>, T>> hIncrBy(Publisher<HIncrByCommand<T>> commands);
}
相关信息
相关文章
spring-data-redis AbstractRedisConnection 源码
spring-data-redis BitFieldSubCommands 源码
spring-data-redis ClusterCommandExecutionFailureException 源码
spring-data-redis ClusterCommandExecutor 源码
spring-data-redis ClusterInfo 源码
spring-data-redis ClusterNodeResourceProvider 源码
spring-data-redis ClusterSlotHashUtil 源码
spring-data-redis ClusterTopology 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦