Skip to content

Commit

Permalink
Polishing #1197
Browse files Browse the repository at this point in the history
Tweak documentation. Add since tags.

Original pull request: #1230.
  • Loading branch information
mp911de committed Feb 21, 2020
1 parent 8a10a96 commit 7ed615f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ public interface RedisServerAsyncCommands<K, V> {
/**
* Get the id of the current connection.
*
* @return Long The command just returns the ID of the current connection. Every connection ID has certain guarantees
* @return Long The command just returns the ID of the current connection.
* @since 5.3
*/
RedisFuture<Long> clientId();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ public interface RedisServerReactiveCommands<K, V> {
/**
* Get the id of the current connection.
*
* @return Long The command just returns the ID of the current connection. Every connection ID has certain guarantees
* @return Long The command just returns the ID of the current connection.
* @since 5.3
*/
Mono<Long> clientId();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public interface RedisServerCommands<K, V> {
/**
* Get the id of the current connection.
*
* @return Long The command just returns the ID of the current connection. Every connection ID has certain guarantees
* @return Long The command just returns the ID of the current connection.
* @since 5.3
*/
Long clientId();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public interface NodeSelectionServerAsyncCommands<K, V> {
/**
* Get the id of the current connection.
*
* @return Long The command just returns the ID of the current connection. Every connection ID has certain guarantees
* @return Long The command just returns the ID of the current connection.
* @since 5.3
*/
AsyncExecutions<Long> clientId();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public interface NodeSelectionServerCommands<K, V> {
/**
* Get the id of the current connection.
*
* @return Long The command just returns the ID of the current connection. Every connection ID has certain guarantees
* @return Long The command just returns the ID of the current connection.
* @since 5.3
*/
Executions<Long> clientId();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ public interface RedisServerCommands<K, V> {
/**
* Get the id of the current connection.
*
* @return Long The command just returns the ID of the current connection. Every connection ID has certain guarantees
* @return Long The command just returns the ID of the current connection.
* @since 5.3
*/
Long clientId();

Expand Down

0 comments on commit 7ed615f

Please sign in to comment.