Skip to content

Instantly share code, notes, and snippets.

@vvsevolodovich
Created January 21, 2019 13:59
Show Gist options
  • Save vvsevolodovich/5f8db36b10314853d84105f9274cbce4 to your computer and use it in GitHub Desktop.
Save vvsevolodovich/5f8db36b10314853d84105f9274cbce4 to your computer and use it in GitHub Desktop.
Channels search
launch {
broadcast.consumeEach {
delay(300)
val foundRepositories =
apiClient.searchRepositories(it).await()
repos.adapter = ReposAdapter(
foundRepositories.map { it.full_name },
this@RepositoriesActivity
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment