- Replace `Xylem.Common` namespace references with `TBF.Rig.RegisterReaders`. - Introduce `GenesisSmartReaderTest` and `FakeSerialDriver` for unit testing. - Revamp `FlowDirectionDetection` to support multiple channels. - Make constants in `StreamingDecoder` public for enhanced accessibility. - Update `AssemblyVersion` and `AssemblyFileVersion` to `3.9.3010.1`.
20 lines
555 B
C#
20 lines
555 B
C#
using System;
|
|
using TBF.Rig.RegisterReaders.GenesisRegReader.communication.Genesis.DataPackages.MeasurementRecords;
|
|
|
|
namespace TBF.Rig.RegisterReaders.GenesisRegReader.communication.Genesis.DataPackages.EventArguments
|
|
{
|
|
/// <inheritdoc />
|
|
public class FlowDataEventArgs : BaseDataEventArgs
|
|
{
|
|
/// <summary>
|
|
/// new record from Stream
|
|
/// </summary>
|
|
public FlowTestRecord NewData;
|
|
|
|
/// <inheritdoc />
|
|
public override Object GetEventData()
|
|
{
|
|
return NewData;
|
|
}
|
|
}
|
|
} |