-
public class ConfigCollectorCollects system properties and environment variables set by the user and used by the tracer. Puts to this map will happen in Config and ConfigProvider classes, which can run concurrently with consumers. So this is based on a ConcurrentHashMap to deal with it.
-
-
Method Summary
Modifier and Type Method Description static ConfigCollectorget()voidput(String key, Object value, ConfigOrigin origin)voidputAll(Map<String, Object> keysAndValues, ConfigOrigin origin)-
-
Method Detail
-
get
static ConfigCollector get()
-
put
void put(String key, Object value, ConfigOrigin origin)
-
putAll
void putAll(Map<String, Object> keysAndValues, ConfigOrigin origin)
-
-
-
-