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

io.hyperfoil.clustering.messages.AgentStatusMessage Maven / Gradle / Ivy

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

import java.io.Serializable;

public abstract class AgentStatusMessage implements Serializable {
   protected final String senderId;
   protected final String runId;

   public AgentStatusMessage(String senderId, String runId) {
      this.senderId = senderId;
      this.runId = runId;
   }

   public String senderId() {
      return senderId;
   }

   public String runId() {
      return runId;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy