You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently provide all the results of the API using java.util.Future. We need to improve this by a simpler abstraction. Items that are important for us:
#get() should return null instead of exception
There should be methods to check success completion or exceptional completion
There should be an explicit method to get the exception
The text was updated successfully, but these errors were encountered:
Response is a Future and a CompletionStage
that can be completed with success value or
an exception.
Also apply refactorings, small bug fixes and
docs.
Rel #15
We currently provide all the results of the API using
java.util.Future
. We need to improve this by a simpler abstraction. Items that are important for us:#get()
should returnnull
instead of exceptionThe text was updated successfully, but these errors were encountered: