ai.timefold.solver.benchmark.quarkus.deployment.BenchmarkConfigBuildItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of timefold-solver-quarkus-benchmark-deployment Show documentation
Show all versions of timefold-solver-quarkus-benchmark-deployment Show documentation
Quarkus deployment module for timefold-solver-quarkus-benchmark.
package ai.timefold.solver.benchmark.quarkus.deployment;
import ai.timefold.solver.benchmark.config.PlannerBenchmarkConfig;
import io.quarkus.builder.item.SimpleBuildItem;
public final class BenchmarkConfigBuildItem extends SimpleBuildItem {
private final PlannerBenchmarkConfig benchmarkConfig;
public BenchmarkConfigBuildItem(PlannerBenchmarkConfig benchmarkConfig) {
this.benchmarkConfig = benchmarkConfig;
}
public PlannerBenchmarkConfig getBenchmarkConfig() {
return benchmarkConfig;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy