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

io.hyperfoil.cli.commands.RunCompleter Maven / Gradle / Ivy

package io.hyperfoil.cli.commands;

import java.util.Comparator;

public class RunCompleter extends ServerOptionCompleter {
   public RunCompleter() {
      super(client -> client.runs(false).stream().map(r -> r.id).sorted(Comparator.reverseOrder()));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy