Package org.apache.aurora.gen

Examples of org.apache.aurora.gen.HostStatus.deepCopy()


      AttributeStore.Mutable store = storeProvider.getAttributeStore();
      ImmutableSet.Builder<HostStatus> statuses = ImmutableSet.builder();
      for (String host : hosts) {
        if (store.setMaintenanceMode(host, mode)) {
          HostStatus status = new HostStatus().setHost(host).setMode(mode);
          eventSink.post(new PubsubEvent.HostMaintenanceStateChange(status.deepCopy()));
          statuses.add(status);
        }
      }
      return statuses.build();
    }
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.