We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Completable.asWorker()
Worker.createSideEffect()
Completable, by definition is emitting Nothing. We can't handle that as a Worker and that is not needed because of runningSideEffect.
Completable
Nothing
Worker
runningSideEffect
See #262
The text was updated successfully, but these errors were encountered:
The solution is just not to use a Worker for Completable.
if you have
myCompletable: Completable // use context.runningSideEffect { myCompletable.await() }
Sorry, something went wrong.
Closed by #1237
No branches or pull requests
Completable
, by definition is emittingNothing
. We can't handle that as aWorker
and that is not needed because ofrunningSideEffect
.See #262
The text was updated successfully, but these errors were encountered: