All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hyperfoil.clustering.AgentInfo Maven / Gradle / Ivy

There is a newer version: 0.27
Show newest version
package io.hyperfoil.clustering;

import java.util.HashMap;
import java.util.Map;

import io.hyperfoil.api.session.PhaseInstance;

public class AgentInfo {
   final String name;
   final String address;
   Status status = Status.REGISTERED;
   Map phases = new HashMap<>();

   public AgentInfo(String name, String address) {
      this.name = name;
      this.address = address;
   }

   public enum Status {
      REGISTERED,
      INITIALIZING,
      INITIALIZED,
      FAILED
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy