Skip to content

Instantly share code, notes, and snippets.

@iambaljeet
Created January 24, 2020 13:05
Show Gist options
  • Save iambaljeet/1229d76182d513164641be512b496805 to your computer and use it in GitHub Desktop.
Save iambaljeet/1229d76182d513164641be512b496805 to your computer and use it in GitHub Desktop.
private fun startSearching(searchQuery: String?) {
CoroutineScope(Dispatchers.IO).launch {
DataRepository.getSearchResults(searchQuery)
withContext(Dispatchers.Main) {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment