Files
tbf/TBF/Rig/RegisterReaders/CommonRR/IPerl/ICommunicationTimeOuts.cs
T
2025-10-18 09:59:07 +02:00

13 lines
701 B
C#

namespace TBF.Rig.RegisterReaders.CommonRR.IPerl
{
public interface ICommunicationTimeOuts
{
/// Communication timeout in ms (500 .. 5000)
public int DelayBetweenRetries { get; set; } /// Delay between communication retries in ms (0 .. 5000)
public int MaxCommRetries { get; set; } /// Max. number of retries (1 .. 10)
public int WaitTimeAfterFailure { get; set; } /// Wait time after communication failure in ms
public int PassThroughWaitTime { get; set; } /// Pass Through wait time for radio parameters in ms
public int NrThreads { get; set; } /// Numbwr of parallel threads (1, 2 or 4)
public int CommTimeout { get; set; }
}
}