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

io.hyperfoil.hotrod.config.HotRodPluginConfig Maven / Gradle / Ivy

There is a newer version: 0.26
Show newest version
package io.hyperfoil.hotrod.config;

import io.hyperfoil.api.config.PluginConfig;

public class HotRodPluginConfig implements PluginConfig {
   private final HotRodCluster[] clusters;

   public HotRodPluginConfig(HotRodCluster[] clusters) {
      this.clusters = clusters;
   }

   public HotRodCluster[] clusters() {
      return clusters;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy