У меня есть этот код:
Flowable.fromIterable(references)
.parallel() // you can also specify number of rails here
.runOn(Schedulers.computation())
.map(this.service::uploadImages)
.sequential()
.subscribe(
response -> processResponse(response),
error -> processError(error)
);
Я хочу иметь возможность получить элемент, который вызывает ошибку в моей processError?