org.drools.conf.PermGenThresholdOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knowledge-api Show documentation
Show all versions of knowledge-api Show documentation
The Drools and jBPM public API which is backwards compatible between releases.
The newest version!
/*
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.drools.conf;
/**
* A class PermGen threshold configuration.
*/
public class PermGenThresholdOption implements SingleValueKnowledgeBaseOption {
private static final long serialVersionUID = 510l;
/**
* The property name for the default DIALECT
*/
public static final String PROPERTY_NAME = "drools.permgenThreshold";
/**
* The defualt value for this option
*/
public static final int DEFAULT_VALUE = 90;
/**
* The threshold of PermGen usage (in percentage) above which the
* engine stops JITting constraints and let them run in interpreted mode
*/
private final int threshold;
/**
* Private constructor to enforce the use of the factory method
* @param threshold
*/
private PermGenThresholdOption( int threshold ) {
this.threshold = threshold;
}
/**
* This is a factory method for this PermGen Threshold configuration.
* The factory method is a best practice for the case where the
* actual object construction is changed in the future.
*
* @param threshold the threshold value for the PermGen option
*
* @return the actual type safe PermGen threshold configuration.
*/
public static PermGenThresholdOption get( int threshold ) {
return new PermGenThresholdOption( threshold );
}
/**
* {@inheritDoc}
*/
public String getPropertyName() {
return PROPERTY_NAME;
}
/**
* Returns the threshold value for PermGen
*
* @return
*/
public int getThreshold() {
return threshold;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + threshold;
return result;
}
@Override
public boolean equals(Object obj) {
if ( this == obj ) return true;
if ( obj == null ) return false;
if ( getClass() != obj.getClass() ) return false;
PermGenThresholdOption other = (PermGenThresholdOption) obj;
if ( threshold != other.threshold ) return false;
return true;
}
}