Skip to content

Commit

Permalink
Fix @SInCE annotation for 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BalmungSan committed May 30, 2024
1 parent 573530a commit 8ac05aa
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public interface RedisScriptingAsyncCommands<K, V> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
<T> RedisFuture<T> evalReadOnly(String script, ScriptOutputType type, K[] keys, V... values);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public interface RedisScriptingReactiveCommands<K, V> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
<T> Flux<T> evalReadOnly(String script, ScriptOutputType type, K[] keys, V... values);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public interface RedisScriptingCommands<K, V> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
<T> T evalReadOnly(String script, ScriptOutputType type, K[] keys, V... values);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public interface NodeSelectionScriptingAsyncCommands<K, V> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
<T> AsyncExecutions<T> evalReadOnly(String script, ScriptOutputType type, K[] keys, V... values);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public interface NodeSelectionScriptingCommands<K, V> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
<T> Executions<T> evalReadOnly(String script, ScriptOutputType type, K[] keys, V... values);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ interface RedisScriptingCoroutinesCommands<K : Any, V : Any> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
suspend fun <T> evalReadOnly(
script: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public interface RedisScriptingCommands<K, V> {
* @param values the values.
* @param <T> expected return type.
* @return script result.
* @since 6.4
* @since 7.0
*/
<T> T evalReadOnly(String script, ScriptOutputType type, K[] keys, V... values);

Expand Down

0 comments on commit 8ac05aa

Please sign in to comment.