Fixed - RxJava3 request can't be canceled. #5498

pull/5937/head
Nikita Koksharov 8 months ago
parent e91cff56f0
commit 33ad98f6ba

@ -28,6 +28,7 @@ import org.redisson.liveobject.core.RedissonObjectBuilder;
import java.util.concurrent.Callable;
import java.util.concurrent.CompletionException;
import java.util.concurrent.atomic.AtomicReference;
/**
*
@ -61,39 +62,37 @@ public class CommandRxService extends CommandAsyncService implements CommandRxEx
@Override
public <R> Flowable<R> flowable(Callable<RFuture<R>> supplier) {
ReplayProcessor<R> p = ReplayProcessor.create();
return p.doOnRequest(new LongConsumer() {
@Override
public void accept(long t) throws Exception {
RFuture<R> future;
try {
future = supplier.call();
} catch (Exception e) {
p.onError(e);
return;
}
p.doOnCancel(new Action() {
@Override
public void run() throws Exception {
future.cancel(true);
AtomicReference<RFuture<R>> futureRef = new AtomicReference<>();
return p.doOnRequest(t -> {
RFuture<R> future;
try {
future = supplier.call();
futureRef.set(future);
} catch (Exception e) {
p.onError(e);
return;
}
});
future.whenComplete((res, e) -> {
if (e != null) {
if (e instanceof CompletionException) {
e = e.getCause();
future.whenComplete((res, e) -> {
if (e != null) {
if (e instanceof CompletionException) {
e = e.getCause();
}
p.onError(e);
return;
}
p.onError(e);
return;
}
if (res != null) {
p.onNext(res);
}
p.onComplete();
if (res != null) {
p.onNext(res);
}
p.onComplete();
});
}).doOnCancel(() -> {
RFuture<R> future = futureRef.get();
if (future != null) {
future.cancel(true);
}
});
}
});
}
}

Loading…
Cancel
Save