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

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

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

import java.util.Map;

import io.hyperfoil.core.util.LowHigh;

public class ConnectionStatsMessage extends StatsMessage {
   public final long timestamp;
   public final Map> stats;

   public ConnectionStatsMessage(String address, String runId, long timestamp, Map> stats) {
      super(address, runId);
      this.timestamp = timestamp;
      this.stats = stats;
   }

   public static class Codec extends ObjectCodec {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy