io.probedock.client.commons.optimize.Optimizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of probe-dock-java Show documentation
Show all versions of probe-dock-java Show documentation
Base code to write Probe Dock clients in Java
The newest version!
package io.probedock.client.commons.optimize;
import io.probedock.client.common.model.ProbeTestRun;
/**
* Define how an optimizer should work
*
* @author Laurent Prevost
*/
public interface Optimizer {
/**
* Execute the optimization
*
* @param store The optimizer store to check if a test has changed or not
* @param optimizable The optimizable to optimize
* @return The optimizable optimized
*/
ProbeTestRun optimize(OptimizerStore store, ProbeTestRun optimizable);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy