We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Firstly, thanks for the work on this project. I got a question when I use this sdk on my project. the frist method :
public RC_T awaitCompletion() throws InterruptedException { completed.await(); // eventually (re)throws RuntimeException getFirstError(); return (RC_T) this; }
and the second one :
public boolean awaitCompletion(long timeout, TimeUnit timeUnit) throws InterruptedException { return completed.await(timeout, timeUnit); }
I readly donot understand why the second one donot call getFirstError() after call completed.await(timeout, timeUnit);
Firstly, thanks for the work on this project.
I got a question when I use this sdk on my project.
the frist method :
and the second one :
I readly donot understand why the second one donot call getFirstError() after call completed.await(timeout, timeUnit);