Package com.spotify.helios.common.descriptors.HostStatus

Examples of com.spotify.helios.common.descriptors.HostStatus.Builder


  }

  private static Builder makeDummyStatusBuilder() {
    final Map<JobId, Deployment> jobs = emptyMap();
    final Map<JobId, TaskStatus> statuses = emptyMap();
    final Builder builder = HostStatus.newBuilder()
        .setStatuses(statuses)
        .setJobs(jobs);
    return builder;
  }
View Full Code Here

TOP

Related Classes of com.spotify.helios.common.descriptors.HostStatus.Builder

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.