-
public interface RequestCallback<T>Callback used in some requests to Glia SDK.
-
-
Method Summary
Modifier and Type Method Description abstract voidonResult(T response, GliaException exception)Method that is fired when request succeeded or if error happened. -
-
Method Detail
-
onResult
abstract void onResult(T response, GliaException exception)
Method that is fired when request succeeded or if error happened.
- Parameters:
response- result returned if the request succeededexception- error returned if the request failed
-
-
-
-