@Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface NoWait
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
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.