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

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

package io.hyperfoil.cli.commands;

import java.util.function.Function;
import java.util.stream.Stream;

import io.hyperfoil.client.RestClient;

public class ServerOptionCompleter extends HyperfoilOptionCompleter {
   public ServerOptionCompleter(Function> provider) {
      super(context -> context.client() == null ? Stream.empty() : provider.apply(context.client()));
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy