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
The documentation at http://docs.paralleluniverse.co/pulsar/ says,
There’s also a timed version of call!, which gives up and returns nil if the timeout expires.
However,
(actors/call-timed! (actors/spawn (actors/gen-server (reify actors/Server (init [_]) (handle-call [_ _ _ _] (Strand/sleep 2) :a)))) 1 :ms :b) CompilerException java.util.concurrent.TimeoutException
The text was updated successfully, but these errors were encountered:
You're right, but the tests assume an exception. Which makes more sense to you and why?
Sorry, something went wrong.
No branches or pull requests
The documentation at http://docs.paralleluniverse.co/pulsar/ says,
However,
The text was updated successfully, but these errors were encountered: