- 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.
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
using Config.Entities;
|
|
using TBF.Rig.Generic;
|
|
|
|
namespace TBF.Rig.Network.AdapterJMS
|
|
{
|
|
public class NetadapterCfg : ComponentCfgBase, Generic.IComponentCfg
|
|
{
|
|
public static XmlSerializer Serializer = XmlSerializer.FromTypes(new[] { typeof(NetadapterCfg) })[0];
|
|
public override XmlSerializer GetSerializer() { return Serializer; }
|
|
|
|
public IComponentCfgCtrl GetControl(IList<Config.Entities.Component> cmpntEntities) { return new NetadapterCfgCtrl(); }
|
|
|
|
|
|
public string Description; /// Description string of the selected network adapter
|
|
|
|
|
|
/// Private parameterless constructor invoked by all other (public) constructors
|
|
NetadapterCfg() {}
|
|
|
|
public NetadapterCfg(string name, IComponentFactory factory)
|
|
: this()
|
|
{
|
|
Name = name;
|
|
Factory = factory;
|
|
ParentName = string.Empty;
|
|
}
|
|
|
|
public string ToString(int i)
|
|
{
|
|
return string.Format("Name={0}, Description={1}", Name, Description);
|
|
}
|
|
}
|
|
}
|