Skip to content

Instantly share code, notes, and snippets.

@yashprakash13
Last active August 15, 2019 09:11
Show Gist options
  • Save yashprakash13/77d1f7f868908ba5c0d8079ea355d6ce to your computer and use it in GitHub Desktop.
Save yashprakash13/77d1f7f868908ba5c0d8079ea355d6ce to your computer and use it in GitHub Desktop.
ViewModel.kt
@WorkerThread
fun search(desc : String) : LiveData<List<DataClass>>{
return myDao.getSearchResults(desc)
}
fun searchForItems(desc: String) : LiveData<List<DataClass>> {
return repository.search(desc)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment