internal MetricsMap(MetricsMap <T> map) { _properties = map._properties; _groupByAttributes = map._groupByAttributes; _groupBySeparators = map._groupBySeparators; _retain = map._retain; _accept = map._accept; _reject = map._reject; _subMaps = map._subMaps; }
public List <MetricsMap <T> > getMaps <T>(string mapName) where T : IceMX.Metrics, new() { List <MetricsMap <T> > maps = new List <MetricsMap <T> >(); foreach (MetricsViewI v in _views.Values) { MetricsMap <T> map = v.getMap <T>(mapName); if (map != null) { maps.Add(map); } } return(maps); }
internal SubMapCloneFactory(MetricsMap <S> map, System.Reflection.FieldInfo field) { _map = map; _field = field; }
internal Entry(MetricsMap <T> map, T obj) { _map = map; _object = obj; }