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
scala> Stream.fail(new RuntimeException).onError(Stream.emit).toList res22: List[Throwable] = List(java.lang.RuntimeException) scala> Stream.fail(new RuntimeException).onError(Stream.emit).map(identity).toList java.lang.RuntimeException ... 42 elided
Originally spotted by @fiadliel in a larger example involving concurrent.join.
concurrent.join
The text was updated successfully, but these errors were encountered:
fix for #735 along with tests
43c3c38
Merge pull request #736 from functional-streams-for-scala/bugfix/735
a620e57
No branches or pull requests
Originally spotted by @fiadliel in a larger example involving
concurrent.join
.The text was updated successfully, but these errors were encountered: