Last active
June 26, 2019 19:03
-
-
Save mecid/729bae3d0b8e780cfd0df6a76ea51621 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private func fetchRepos(matching query: String) { | |
| githubService | |
| .search(matching: query) | |
| .replaceError(with: []) | |
| .subscribe(on: DispatchQueue.global()) | |
| .receive(on: OperationQueue.main) | |
| .sink { repos in print("count:", repos.count) } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment