-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Deprecate delayFlow and delayEach #1429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This will make Flow API surface more orthogonal with less operators to remember. Both of them can be easily written without too much additional code and still produce quite readable and easy to understand code: delayFlow(time) = onStart { delay(time) } delayEach(time) = onEach { delay(time) } Fixes #1429
And what about prospective |
|
Yes, it surely is. But I meant more like |
If you have a use-case for |
This will make
Flow
API surface more orthogonal with less operators to remember. Both of them can be easily written without too much additional code and still produce quite readable and easy to understand code:The text was updated successfully, but these errors were encountered: