26 lines
622 B
Plaintext
26 lines
622 B
Plaintext
|
|
/*
|
||
|
|
* IDataCollectionEnabled.cs
|
||
|
|
*
|
||
|
|
* Copyright © 2010
|
||
|
|
* Diversified Technical Systems, Inc.
|
||
|
|
* All Rights Reserved.
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace DTS.Common.DAS.Concepts
|
||
|
|
{ ///
|
||
|
|
/// <summary>
|
||
|
|
/// Representation of the ability to perform a basic data collection.
|
||
|
|
/// </summary>
|
||
|
|
///
|
||
|
|
public interface IDataCollectionEnabled
|
||
|
|
: IArmable,
|
||
|
|
ITriggerable,
|
||
|
|
IDownloadEnabled
|
||
|
|
{ //
|
||
|
|
// Additional properties required for rudimentary data collection.
|
||
|
|
//
|
||
|
|
double[] AvailableSampleRates { get; }
|
||
|
|
double SampleRate { get; set; }
|
||
|
|
}
|
||
|
|
}
|