Skip to content

Commit

Permalink
Merge pull request #33199 from pernelkanic/main
Browse files Browse the repository at this point in the history
Replaced the inversed return types with correct return types
  • Loading branch information
gastaldi authored May 8, 2023
2 parents 2070899 + 4c3bbf6 commit 81b0d90
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ public interface ReactiveTransactionalValueCommands<K, V> extends ReactiveTransa
*
* @param key the key
* @param value the value
* @return A {@code Uni} emitting {@code null} when the command has been enqueued successfully in the transaction, a failure
*/
Uni<Void> setex(K key, long seconds, V value);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ public interface ValueCommands<K, V> extends RedisCommands {
* Requires Redis 1.0.1
*
* @param map the key/value map containing the items to store
* @return a Uni producing a {@code null} item on success, a failure otherwise
**/
void mset(Map<K, V> map);

Expand All @@ -219,7 +218,6 @@ public interface ValueCommands<K, V> extends RedisCommands {
* @param key the key
* @param milliseconds the duration in ms
* @param value the value
* @return a Uni producing a {@code null} item on success, a failure otherwise
**/
void psetex(K key, long milliseconds, V value);

Expand All @@ -231,7 +229,6 @@ public interface ValueCommands<K, V> extends RedisCommands {
*
* @param key the key
* @param value the value
* @return a Uni producing a {@code null} item on success, a failure otherwise
**/
void set(K key, V value);

Expand All @@ -244,7 +241,6 @@ public interface ValueCommands<K, V> extends RedisCommands {
* @param key the key
* @param value the value
* @param setArgs the set command extra-arguments
* @return a Uni producing a {@code null} item on success, a failure otherwise
**/
void set(K key, V value, SetArgs setArgs);

Expand Down

0 comments on commit 81b0d90

Please sign in to comment.