public interface SSAICallback<T>
An SSAI callback used on asynchronous operations.
abstract void
onSuccess(T result)
onError(Throwable error)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract void onSuccess(T result)
Called when the operation has been successful.
result
abstract void onError(Throwable error)
Called when there has been an error in the operation.
error