Package com.example.qrgo.listeners
Interface OnUserSearchListener
-
public interface OnUserSearchListener
Interface definition for a callback to be invoked when a user search is complete.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onUserSearchComplete(java.util.List<BasicPlayerProfile> users)
Called when a user search is complete and at least one user is found.void
onUserSearchFailure(java.lang.Exception e)
Called when a user search is complete and no users are found.
-
-
-
Method Detail
-
onUserSearchComplete
void onUserSearchComplete(java.util.List<BasicPlayerProfile> users)
Called when a user search is complete and at least one user is found.- Parameters:
users
- The list of users that match the search criteria.
-
onUserSearchFailure
void onUserSearchFailure(java.lang.Exception e)
Called when a user search is complete and no users are found.
-
-