Class SolverManagerConfig
- java.lang.Object
-
- org.optaplanner.core.config.AbstractConfig<SolverManagerConfig>
-
- org.optaplanner.core.config.solver.SolverManagerConfig
-
public class SolverManagerConfig extends AbstractConfig<SolverManagerConfig>
-
-
Field Summary
Fields Modifier and Type Field Description static String
PARALLEL_SOLVER_COUNT_AUTO
protected String
parallelSolverCount
protected Class<? extends ThreadFactory>
threadFactoryClass
-
Constructor Summary
Constructors Constructor Description SolverManagerConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SolverManagerConfig
copyConfig()
Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)
on itprotected int
getAvailableProcessors()
String
getParallelSolverCount()
Class<? extends ThreadFactory>
getThreadFactoryClass()
SolverManagerConfig
inherit(SolverManagerConfig inheritedConfig)
Inherits each property of theinheritedConfig
unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).Integer
resolveParallelSolverCount()
protected int
resolveParallelSolverCountAutomatically(int availableProcessorCount)
void
setParallelSolverCount(String parallelSolverCount)
void
setThreadFactoryClass(Class<? extends ThreadFactory> threadFactoryClass)
void
visitReferencedClasses(Consumer<Class<?>> classVisitor)
Call the class visitor on each (possibly null) Class instance provided to this config by the user (including those provided in child configs).SolverManagerConfig
withParallelSolverCount(String parallelSolverCount)
SolverManagerConfig
withThreadFactoryClass(Class<? extends ThreadFactory> threadFactoryClass)
-
Methods inherited from class org.optaplanner.core.config.AbstractConfig
toString
-
-
-
-
Field Detail
-
PARALLEL_SOLVER_COUNT_AUTO
public static final String PARALLEL_SOLVER_COUNT_AUTO
- See Also:
- Constant Field Values
-
parallelSolverCount
protected String parallelSolverCount
-
threadFactoryClass
protected Class<? extends ThreadFactory> threadFactoryClass
-
-
Method Detail
-
getParallelSolverCount
public String getParallelSolverCount()
-
setParallelSolverCount
public void setParallelSolverCount(String parallelSolverCount)
-
getThreadFactoryClass
public Class<? extends ThreadFactory> getThreadFactoryClass()
-
setThreadFactoryClass
public void setThreadFactoryClass(Class<? extends ThreadFactory> threadFactoryClass)
-
withParallelSolverCount
public SolverManagerConfig withParallelSolverCount(String parallelSolverCount)
-
withThreadFactoryClass
public SolverManagerConfig withThreadFactoryClass(Class<? extends ThreadFactory> threadFactoryClass)
-
resolveParallelSolverCount
public Integer resolveParallelSolverCount()
-
getAvailableProcessors
protected int getAvailableProcessors()
-
resolveParallelSolverCountAutomatically
protected int resolveParallelSolverCountAutomatically(int availableProcessorCount)
-
inherit
public SolverManagerConfig inherit(SolverManagerConfig inheritedConfig)
Description copied from class:AbstractConfig
Inherits each property of theinheritedConfig
unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).After the inheritance, if a property on this
AbstractConfig
composition is replaced, it should not affect the inherited composition instance.- Specified by:
inherit
in classAbstractConfig<SolverManagerConfig>
- Parameters:
inheritedConfig
- never null- Returns:
- this
-
copyConfig
public SolverManagerConfig copyConfig()
Description copied from class:AbstractConfig
Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)
on it- Specified by:
copyConfig
in classAbstractConfig<SolverManagerConfig>
- Returns:
- new instance
-
visitReferencedClasses
public void visitReferencedClasses(Consumer<Class<?>> classVisitor)
Description copied from class:AbstractConfig
Call the class visitor on each (possibly null) Class instance provided to this config by the user (including those provided in child configs). Required to create the bean factory in Quarkus.- Specified by:
visitReferencedClasses
in classAbstractConfig<SolverManagerConfig>
- Parameters:
classVisitor
- The visitor of classes, never null. Can accept null instances of Class
-
-