Skip to content

Commit

Permalink
Fix RedisTransactionalCommands.exec(…) Javadoc #942
Browse files Browse the repository at this point in the history
  • Loading branch information
mp911de committed Dec 3, 2018
1 parent af7ece9 commit f651039
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ public interface RedisTransactionalAsyncCommands<K, V> {
*
* @return List&lt;Object&gt; array-reply each element being the reply to each of the commands in the atomic transaction.
*
* When using {@code WATCH}, {@code EXEC} can return a
* When using {@code WATCH}, {@code EXEC} can return a {@link TransactionResult#wasDiscarded discarded
* TransactionResult}.
* @see TransactionResult#wasDiscarded
*/
RedisFuture<TransactionResult> exec();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ public interface RedisTransactionalReactiveCommands<K, V> {
*
* @return Object array-reply each element being the reply to each of the commands in the atomic transaction.
*
* When using {@code WATCH}, {@code EXEC} can return a
* When using {@code WATCH}, {@code EXEC} can return a {@link TransactionResult#wasDiscarded discarded
* TransactionResult}.
* @see TransactionResult#wasDiscarded
*/
Mono<TransactionResult> exec();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ public interface RedisTransactionalCommands<K, V> {
*
* @return List&lt;Object&gt; array-reply each element being the reply to each of the commands in the atomic transaction.
*
* When using {@code WATCH}, {@code EXEC} can return a
* When using {@code WATCH}, {@code EXEC} can return a {@link TransactionResult#wasDiscarded discarded
* TransactionResult}.
* @see TransactionResult#wasDiscarded
*/
TransactionResult exec();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ public interface RedisTransactionalCommands<K, V> {
*
* @return List&lt;Object&gt; array-reply each element being the reply to each of the commands in the atomic transaction.
*
* When using {@code WATCH}, {@code EXEC} can return a
* When using {@code WATCH}, {@code EXEC} can return a {@link TransactionResult#wasDiscarded discarded
* TransactionResult}.
* @see TransactionResult#wasDiscarded
*/
TransactionResult exec();

Expand Down

0 comments on commit f651039

Please sign in to comment.