Package org.kie.internal.conf
Class MaxThreadsOption
- java.lang.Object
-
- org.kie.internal.conf.MaxThreadsOption
-
- All Implemented Interfaces:
java.io.Serializable,org.kie.api.conf.KieBaseOption,org.kie.api.conf.Option,org.kie.api.conf.SingleValueKieBaseOption,org.kie.api.conf.SingleValueOption,org.kie.api.conf.SingleValueRuleBaseOption
public class MaxThreadsOption extends java.lang.Object implements org.kie.api.conf.SingleValueRuleBaseOptionA class for the max threads configuration.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static org.kie.api.conf.OptionKey<MaxThreadsOption>KEYstatic java.lang.StringPROPERTY_NAMEThe property name for the max threads
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)static MaxThreadsOptionget(int threshold)This is a factory method for this Max Threads configuration.intgetMaxThreads()Returns the maximum number of threads for partition evaluationjava.lang.StringgetPropertyName()inthashCode()
-
-
-
Field Detail
-
PROPERTY_NAME
public static final java.lang.String PROPERTY_NAME
The property name for the max threads- See Also:
- Constant Field Values
-
KEY
public static org.kie.api.conf.OptionKey<MaxThreadsOption> KEY
-
-
Method Detail
-
get
public static MaxThreadsOption get(int threshold)
This is a factory method for this Max Threads configuration. The factory method is a best practice for the case where the actual object construction is changed in the future.- Parameters:
threshold- the maximum number of threads for partition evaluation- Returns:
- the actual type safe max threads configuration.
-
getPropertyName
public java.lang.String getPropertyName()
- Specified by:
getPropertyNamein interfaceorg.kie.api.conf.Option
-
getMaxThreads
public int getMaxThreads()
Returns the maximum number of threads for partition evaluation- Returns:
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
-