| Class | Description |
|---|---|
| ReCounter |
Retriable counter.
|
| ReCounters |
Retriable counters.
|
| ReLock |
Retriable lock.
|
| ReLocks |
Retriable locks.
|
| ReSttc |
Retriable Sttc.
|
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")
);Copyright © 2014–2015 stateful.co. All rights reserved.