> +
> +/**
> + * Tests to see if server has reached status. This class is most useful when 
> paired with a RetryablePredicate as
> + * in the code below. This class can be used to block execution until the 
> Server status has reached a desired status.
> + * This is useful when your Server needs to be 100% ready before you can 
> continue with execution.
> + *
> + * <pre>
> + * {@code
> + * ServerCreated serverCreated = serverApi.create(100);
> + *
> + * if (!ServerPredicates.awaitActive(serverApi).apply(serverCreated)) {
> + *   throw new TimeoutException("Timeout on server: " + serverCreated);
> + * }
> + * </pre>
> + * 
> + * You can also use the static convenience methods as so.

Difference is not immediately clear? You mean "with a Server rather than a 
ServerCreated object"?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/355/files#r12030470

Reply via email to