Hey folks,
I was currently running into the situation where I just needed a quick check if my observable is already done (and in particular failed), but I wondered why this is not exposed on the Observable - is there any specific reason?
my code was like
if (!observable.isCompleted()) {
rescheduleIt();
}
Hey folks,
I was currently running into the situation where I just needed a quick check if my observable is already done (and in particular failed), but I wondered why this is not exposed on the
Observable- is there any specific reason?my code was like