Skip to content

Commit

Permalink
Implement missing method in the BooleanListOutput (redis#3033) (redis…
Browse files Browse the repository at this point in the history
…#3039)

* Implement missing method in the BooleanListOutput (redis#3033)

* Impossible to backport test
  • Loading branch information
tishun authored Nov 1, 2024
1 parent 7ea1e27 commit 8e3230e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/io/lettuce/core/output/BooleanListOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public void set(long integer) {
subscriber.onNext(output, (integer == 1) ? Boolean.TRUE : Boolean.FALSE);
}

@Override
public void set(boolean value) {
subscriber.onNext(output, value);
}

@Override
public void multi(int count) {

Expand Down

0 comments on commit 8e3230e

Please sign in to comment.