Package com.netflix.config

Examples of com.netflix.config.DynamicLongProperty


    return property.get();
  }

  @Override
  public long getLong(String key, int defaultValue) {
    final DynamicLongProperty property = DynamicPropertyFactory
        .getInstance().getLongProperty(key, defaultValue);
    return property.get();
  }
View Full Code Here

TOP

Related Classes of com.netflix.config.DynamicLongProperty

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.