Files
tbf/TBF/Rig/Various/StatisticsMonitoring/Factory.cs

27 lines
904 B
C#

///
/// Copyright (c) 2020 Sensus Slovensko a.s.
///
using System;
using System.Collections.Generic;
using TBF.Rig.Generic;
namespace TBF.Rig.Various.StatisticsMonitoring
{
public class Factory : IComponentFactory
{
public string ClassName { get { return this.GetType().Namespace.Substring(8); } }
public override string ToString() { return ClassName; }
public IComponent DummyComponent() { return new ProcessStatistics(); }
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new ProcessStatistics(cfg); }
public IComponentCfg DefaultConfig() { return new StatisticsCfg(this.GetType().Namespace.Substring(16), this); }
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
{
return ComponentCfgBase.CreateFromDbEntity(StatisticsCfg.Serializer, component, this);;
}
}
}