|
Did this page help you?Yes No Tell us about it... |
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface NoWait
Used to mark Promise
arguments of @Asynchronous methods that should
not be waited for.
Example usage:
@Asynchronous
private void calculate(Promise arg1, @NoWait Settable result) {
...
result.set(r);
}
Asynchronous
|
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |