Thomas Cederholm

Results 11 comments of Thomas Cederholm

It's not as elegant/dynamic, just another means to model it. I think it should work(?): ```java public static Future sendRequestWithRetry(int retryCount) { return sendRequest() .recover(retry()) .recover(retry()) .recover(retry()); } private static...