Examples of runtimeOperations()


Examples of org.springframework.xd.rest.client.impl.SpringXDTemplate.runtimeOperations()

    // verify modules
    Map<String, Properties> modules = new HashMap<String, Properties>();
    int attempts = 0;
    while (attempts++ < 60) {
      Thread.sleep(500);
      for (ModuleMetadataResource module : template.runtimeOperations().listDeployedModules()) {
        modules.put(module.getContainerId() + ":" + module.getModuleType() + ":" + module.getName(),
            module.getDeploymentProperties());
      }
      if (modules.size() == 4) {
        break;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.