Package com.netflix.config

Examples of com.netflix.config.DynamicIntProperty


    return property.get();
  }

  @Override
  public int getInt(String key, int defaultValue) {
    final DynamicIntProperty property = DynamicPropertyFactory
        .getInstance().getIntProperty(key, defaultValue);
    return property.get();
  }
View Full Code Here

TOP

Related Classes of com.netflix.config.DynamicIntProperty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.