Package com.microsoft.quickauth.signin
Interface ClientCreatedListener
-
public interface ClientCreatedListenerListener callback for asynchronous initialization of MSQASignInClient object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCreated(MSQASignInClient client)Called once when the client object is successfully created.voidonError(MSQAException error)Called once failure and pass the error.
-
-
-
Method Detail
-
onCreated
void onCreated(@NonNull MSQASignInClient client)Called once when the client object is successfully created.- Parameters:
client- Successfully created client object.
-
onError
void onError(@NonNull MSQAException error)Called once failure and pass the error.- Parameters:
error- Error for creating a client
-
-