Created
April 15, 2016 12:02
-
-
Save programaths/1747bf2742e778488ab14d4d51b74f1c to your computer and use it in GitHub Desktop.
Example of formatting
This file contains 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
gameService.gamelistArray() | |
.subscribeOn(Schedulers.io()) | |
.observeOn(AndroidSchedulers.mainThread()) | |
.subscribe { | |
gameList -> | |
adapter=GameListAdapter(gameList.toList().map { it.second },ctx) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment