-
Notifications
You must be signed in to change notification settings - Fork 221
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
[#1078] Streaming with Monix's Observable #1112
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1112 +/- ##
=========================================
- Coverage 80.25% 78.05% -2.2%
=========================================
Files 54 56 +2
Lines 1028 1080 +52
Branches 47 48 +1
=========================================
+ Hits 825 843 +18
- Misses 203 237 +34
Continue to review full report at Codecov.
|
@sergeykolbasov I don't see anything against it (the module will add I've noticed I missed test for |
@sergeykolbasov I have problem with
Any tips on what to look for? I assume I violate some kind of protocol |
I think this would have to wait for CE3 support in Monix: monix/monix#1533 |
Related to #1078
Observable
doesn't have the right kind but I think I managed to find decent workaround usingObservable
is built withTask
internally and depends onScheduler
so it will probably stay this way. On the other hand, it provides many methods that can work with polymorphic effects.It's still
Task
under the hood so it's not that nice but if you provideScheduler
you can use otherF
and I'm pretty sure it would still be more performant than alternatives.Do you think this approach will work correctly?
Despite some flaws, it would be fantastic to have server-side support for streaming with Monix
Observable
for its users. :)