|
|
@ -118,6 +118,11 @@ public class RedissonSetReactive<V> extends RedissonExpirableReactive implements
|
|
|
|
return reactive(instance.removeAllAsync(c));
|
|
|
|
return reactive(instance.removeAllAsync(c));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public Publisher<Set<V>> readIntersection(String... names) {
|
|
|
|
|
|
|
|
return reactive(instance.readIntersectionAsync(names));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public Publisher<Long> intersection(String... names) {
|
|
|
|
public Publisher<Long> intersection(String... names) {
|
|
|
|
List<Object> args = new ArrayList<Object>(names.length + 1);
|
|
|
|
List<Object> args = new ArrayList<Object>(names.length + 1);
|
|
|
|