Package co.stateful.retry
SDK that retries on failures.
It is recommended to use decorators from this package in
production environment. They will provide some guarantee that in
case of accidental network outage your code will make a few
honest retries before throwing a runtime exception. Just
wrap your actual Sttc
implemntation into
ReSttc
and that's it:
Sttc sttc = new ReSttc( new RtSttc(new URN("urn:github:12345"), "auth-key") );
- Since:
- 0.5
-
Class Summary Class Description ReCounter Retriable counter.ReCounters Retriable counters.ReLock Retriable lock.ReLocks Retriable locks.ReSttc Retriable Sttc.