Created
June 25, 2020 15:32
-
-
Save JoseAlcerreca/71c80dc91114ae8bf0fcea26e17abf9a 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
<!-- Copyright 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
override fun fetchWeatherFlow(): Flow<String> = flow { | |
var counter = 0 | |
while(true) { | |
counter++ | |
delay(2000) | |
emit(weatherConditions[counter % weatherConditions.size]) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Grateful infinitely.
Simply, meaningfully, powerfully