public interface EvernoteCallback<T>
| Modifier and Type | Method and Description |
|---|---|
void |
onException(java.lang.Exception exception)
Invoked when the async operation has completed with an exception.
|
void |
onSuccess(T result)
Invoked when the async operation has completed successfully.
|
void onSuccess(T result)
result - The result, which the async operation returned.void onException(java.lang.Exception exception)
exception - The error from the async operation.