Copyright 2014 Netflix, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 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.
/** * Copyright 2014 Netflix, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * 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 com.netflix.config;
An implementation of DynamicIntProperty that caches the primitive value whenever it is changed. This can give improved performance due to avoiding the unboxing, at the expense of additional memory usage.
Author:Mike Smith
/** * An implementation of {@link DynamicIntProperty} that caches the primitive value whenever it is changed. * * This can give improved performance due to avoiding the unboxing, at the expense of additional * memory usage. * * @author Mike Smith * */
public class CachedDynamicIntProperty extends DynamicIntProperty { protected volatile int primitiveValue; public CachedDynamicIntProperty(String propName, int defaultValue) { super(propName, defaultValue); // Set the initial value of the cached primitive value. this.primitiveValue = chooseValue(); } @Override protected void propertyChanged() { // Update the cached primitive value when the property is changed. this.primitiveValue = chooseValue(); }
Get the current value from the underlying DynamicProperty
Returns:
/** * Get the current value from the underlying DynamicProperty * * @return */
protected int chooseValue() { return prop.getInteger(defaultValue).intValue(); }
Get the current cached value.
Returns:
/** * Get the current cached value. * * @return */
@Override public int get() { return primitiveValue; } @Override public Integer getValue() { return get(); } }