public interface SignUpListener
signUpSucceeded(User user)
method.
If the process fails the method signUpFailed(Error error)
will get called and the appropriate Error object will get passed.Modifier and Type | Method and Description |
---|---|
void |
signUpFailed(Error error)
Gets called when signing up fails.
|
void |
signUpSucceeded(User user)
Gets called when signing up succeeds.
|
void signUpSucceeded(User user)
user
- An object containing all information about the user created on server.void signUpFailed(Error error)
error
- The error occurred while trying to sign the user up.