- Introduced `AdapterJMS` component and configurations, including its factory, control, and designer files. - Enhanced CJMS11 camera initialization with improved connection handling via multiple retries. - Updated TbfComponents to include the new JMS adapter factory. - Refactored camera test methods and connection logic for better reliability and performance. - Adjusted resource definitions in the project file to include new JMS adapter resources.
26 lines
833 B
C#
26 lines
833 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
using TBF.Rig.Generic;
|
|
|
|
namespace TBF.Rig.Network.AdapterJMS
|
|
{
|
|
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 Netadapter(); }
|
|
|
|
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new Netadapter(cfg); }
|
|
|
|
public IComponentCfg DefaultConfig() { return new NetadapterCfg(this.GetType().Namespace.Substring(8), this); }
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(NetadapterCfg.Serializer, component, this);
|
|
}
|
|
}
|
|
}
|