public interface

KinveyUserManagementCallback

implements KinveyClientCallback<T>
com.kinvey.android.callback.KinveyUserManagementCallback

Class Overview

This callback is used for User Management operations, such as sending emails or password reset forms.

This methods which use this callback do not provide any return values, instead they either "ran" or "didn't run".

Summary

Public Methods
abstract void onFailure(Throwable error)
Method invoked when a user operation fails to complete.
abstract void onSuccess(Void result)
Method invoked when a user operation completes.
[Expand]
Inherited Methods
From interface com.kinvey.java.core.KinveyClientCallback

Public Methods

public abstract void onFailure (Throwable error)

Method invoked when a user operation fails to complete.

Parameters
error - details about the error.

public abstract void onSuccess (Void result)

Method invoked when a user operation completes.

Parameters
result - typed to Void because there is no usable return value.