public interface LiveAuthListener
| Modifier and Type | Method and Description |
|---|---|
void |
onAuthComplete(LiveStatus status,
LiveConnectSession session,
java.lang.Object userState)
Invoked when the operation completes successfully.
|
void |
onAuthError(LiveAuthException exception,
java.lang.Object userState)
Invoked when the method call fails.
|
void onAuthComplete(LiveStatus status, LiveConnectSession session, java.lang.Object userState)
status - The LiveStatus for an operation. If successful, the status is
CONNECTED. If unsuccessful, NOT_CONNECTED or UNKNOWN are returned.session - The LiveConnectSession from the LiveAuthClient.userState - An arbitrary object that is used to determine the caller of the method.void onAuthError(LiveAuthException exception, java.lang.Object userState)
exception - The LiveAuthException error.userState - An arbitrary object that is used to determine the caller of the method.