SearchDAO

interface SearchDAO

Inheritors

Functions

Link copied to clipboard
abstract suspend fun getKnownContacts(): List<UserSearchEntity>
Link copied to clipboard
Link copied to clipboard
abstract suspend fun handleSearch(searchQuery: String): List<UserSearchEntity>
Link copied to clipboard
abstract suspend fun handleSearchExcludingAConversation(searchQuery: String, conversationId: ConversationIDEntity): List<UserSearchEntity>
Link copied to clipboard
abstract suspend fun searchList(query: String): List<UserSearchEntity>
Link copied to clipboard
abstract suspend fun searchListExcludingAConversation(conversationId: ConversationIDEntity, query: String): List<UserSearchEntity>