Interface UserLookupHandler
-
- All Implemented Interfaces:
public interface UserLookupHandlerUsers lookup functional interface. Used to create custom users lookup algorithm.
-
-
Method Summary
Modifier and Type Method Description abstract List<User>handleUserLookup(String query)Performs users lookup by given query in suspend way. -
-
Method Detail
-
handleUserLookup
abstract List<User> handleUserLookup(String query)
Performs users lookup by given query in suspend way. It's executed on background, so it can perform heavy operations.
- Parameters:
query- String as user input for lookup algorithm.- Returns:
List of users as result of lookup.
-
-
-
-