public interface IValueCallback<T>
Modifier and Type | Method and Description |
---|---|
void |
onError()
Called when the requested value is not available or
encountered an error when returning.
|
void |
onSuccess(T value)
Called with the appropriate return value on a successful operation.
|
void onSuccess(T value)
void onError()