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

de.codecentric.spring.boot.chaos.monkey.assaults.LatencyAssaultExecutor Maven / Gradle / Ivy

package de.codecentric.spring.boot.chaos.monkey.assaults;

public class LatencyAssaultExecutor implements ChaosMonkeyLatencyAssaultExecutor {

  @Override
  public void execute(long durationInMillis) {
    try {
      Thread.sleep(durationInMillis);
    } catch (InterruptedException e) {
      // do nothing
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy