Result - The result type of the successful action.public interface ICallback<Result>
| Modifier and Type | Method and Description |
|---|---|
void |
failure(ClientException ex)
How failures are handled.
|
void |
success(Result result)
How successful results are handled.
|
void success(Result result)
result - The result.void failure(ClientException ex)
ex - The exception.