Package com.subhajit.processmanager.agent.heartbeat

Examples of com.subhajit.processmanager.agent.heartbeat.HeartbeatRepositoryImpl


  public ManagedProcess(String description, ProcessBuilder processBuilder)
      throws IOException {
    super();
    this.description = description;
    uid = UUID.randomUUID().toString();
    repo = new HeartbeatRepositoryImpl(uid);
    status = ManagedProcessStatus.UNKNOWN;
    this.processBuilder = copy(processBuilder);
    ManagedProcesses.getDefaultInstance().add(this);
  }
View Full Code Here

TOP

Related Classes of com.subhajit.processmanager.agent.heartbeat.HeartbeatRepositoryImpl

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.