RxClojure does not implement the Retry operator.
RxCpp implements this operator as retry
:
RxGroovy has two versions of this operator: retry
and retryWhen
.
RxJava has two versions of this operator: retry
and retryWhen
.
RxJS implements this operator as retry
.
retry
is found in the following distributions:
rx.js
rx.all.js
rx.all.compat.js
rx.compat.js
rx.lite.js
rx.lite.compat.js
RxKotlin has two versions of this operator: retry
and retryWhen
.
Rx.NET implements this operator as Retry
.
RxPY implements this operator as retry
:
Rx.rb has two versions of this operator: retry
and retry_infinitely
.
retryInfinitely
, on the other hand, will attempt to resubscribe to and mirror the
source Observable indefinitely, no matter how many onError
notifications it
receives.
RxScala has two versions of this operator: retry
and retryWhen
.