tbf/TBF/Rig/GenericDevices/IRegReaderDatastream.cs
2021-10-26 19:38:09 +02:00

19 lines
447 B
C#

///
/// Copyright (c) 2018-2021 Sensus Slovensko a.s.
///
using System;
namespace TBF.Rig.GenericDevices
{
interface IRegReaderDatastream : IRegReader
{
void TestIsGoingToStartSoon(Config.Entities.Test test, int repetitionNr);
bool NoSamples { get; }
double VolumeLtrStart { get; }
double VolumeLtrEnd { get; }
double TimestampSecStart { get; }
double TimestampSecEnd { get; }
}
}