Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.simpleworkflow.flow.annotations
Annotation Type NoWait


@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);
 }
 
 

See Also:
Asynchronous



Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.