Uses of Class
io.quarkus.redis.datasource.sortedset.ZAddArgs
-
Packages that use ZAddArgs Package Description io.quarkus.redis.datasource.sortedset io.quarkus.redis.runtime.datasource -
-
Uses of ZAddArgs in io.quarkus.redis.datasource.sortedset
Methods in io.quarkus.redis.datasource.sortedset that return ZAddArgs Modifier and Type Method Description ZAddArgsZAddArgs. ch()Modify the return value from the number of new elements added, to the total number of elements changed (CH is an abbreviation of changed).ZAddArgsZAddArgs. gt()Only update existing elements if the new score is greater than the current score.ZAddArgsZAddArgs. lt()Only update existing elements if the new score is less than the current score.ZAddArgsZAddArgs. nx()Only add new elements.ZAddArgsZAddArgs. xx()Only update elements that already exist.Methods in io.quarkus.redis.datasource.sortedset with parameters of type ZAddArgs Modifier and Type Method Description io.smallrye.mutiny.Uni<Boolean>ReactiveSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.io.smallrye.mutiny.Uni<Integer>ReactiveSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)Execute the command ZADD.io.smallrye.mutiny.Uni<Integer>ReactiveSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)Execute the command ZADD.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)Execute the command ZADD.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)Execute the command ZADD.booleanSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.intSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)Execute the command ZADD.intSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)Execute the command ZADD.voidTransactionalSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.voidTransactionalSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)Execute the command ZADD.voidTransactionalSortedSetCommands. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)Execute the command ZADD.io.smallrye.mutiny.Uni<Double>ReactiveSortedSetCommands. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommands. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.OptionalDoubleSortedSetCommands. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD.voidTransactionalSortedSetCommands. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)Execute the command ZADD. -
Uses of ZAddArgs in io.quarkus.redis.runtime.datasource
Methods in io.quarkus.redis.runtime.datasource with parameters of type ZAddArgs Modifier and Type Method Description (package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractSortedSetCommands. _zadd(K key, ZAddArgs args, double score, V value)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractSortedSetCommands. _zadd(K key, ZAddArgs args, ScoredValue<V>... items)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractSortedSetCommands. _zadd(K key, ZAddArgs args, Map<V,Double> items)(package private) io.smallrye.mutiny.Uni<io.vertx.mutiny.redis.client.Response>AbstractSortedSetCommands. _zaddincr(K key, ZAddArgs args, double score, V value)booleanBlockingSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, double score, V member)intBlockingSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)intBlockingSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)voidBlockingTransactionalSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, double score, V member)voidBlockingTransactionalSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)voidBlockingTransactionalSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)io.smallrye.mutiny.Uni<Boolean>ReactiveSortedSetCommandsImpl. zadd(K key, ZAddArgs args, double score, V value)io.smallrye.mutiny.Uni<Integer>ReactiveSortedSetCommandsImpl. zadd(K key, ZAddArgs args, ScoredValue<V>... items)io.smallrye.mutiny.Uni<Integer>ReactiveSortedSetCommandsImpl. zadd(K key, ZAddArgs args, Map<V,Double> items)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, double score, V member)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, ScoredValue<V>... items)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommandsImpl. zadd(K key, ZAddArgs zAddArgs, Map<V,Double> items)OptionalDoubleBlockingSortedSetCommandsImpl. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)voidBlockingTransactionalSortedSetCommandsImpl. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)io.smallrye.mutiny.Uni<Double>ReactiveSortedSetCommandsImpl. zaddincr(K key, ZAddArgs args, double score, V value)io.smallrye.mutiny.Uni<Void>ReactiveTransactionalSortedSetCommandsImpl. zaddincr(K key, ZAddArgs zAddArgs, double score, V member)
-