A function to be called after a task completes. @see Task
| 14 | * @see Task |
| 15 | */ |
| 16 | public interface Continuation<TTaskResult, TContinuationResult> { |
| 17 | TContinuationResult then(Task<TTaskResult> task) throws Exception; |
| 18 | } |
no outgoing calls
no test coverage detected