Package org.jclouds.ibm.smartcloud.predicates

Examples of org.jclouds.ibm.smartcloud.predicates.InstanceActive


      return instance;
   }

   private void blockUntilRunning(Instance instance) {
      long start = System.currentTimeMillis();
      assert new RetryablePredicate<Instance>(new InstanceActive(connection), 15 * 60 * 1000).apply(instance) : connection
               .getInstance(instance.getId());

      System.out.println(((System.currentTimeMillis() - start) / 1000) + " seconds");
   }
View Full Code Here

TOP

Related Classes of org.jclouds.ibm.smartcloud.predicates.InstanceActive

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.