hydra attempts status
| 4 | * hydra attempts status |
| 5 | */ |
| 6 | public class Attempts implements Event { |
| 7 | public final long sent; |
| 8 | public final long left; |
| 9 | public final long elapsed; |
| 10 | public final long eta; |
| 11 | |
| 12 | public Attempts(long sent, long left, long elapsed, long eta) { |
| 13 | this.sent = sent; |
| 14 | this.left = left; |
| 15 | this.elapsed = elapsed; |
| 16 | this.eta = eta; |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected