28 lines
688 B
C#
28 lines
688 B
C#
/*
|
|
* DTS.Channel.ILargeDataAware
|
|
*
|
|
* Copyright © 2009
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved
|
|
*/
|
|
|
|
namespace DTS.Common.DAS.Concepts.DAS.Channel
|
|
{
|
|
/// <summary>
|
|
/// Definition of what it means for a DAS channel to be "large data aware".
|
|
/// </summary>
|
|
///
|
|
public interface ILargeDataAware
|
|
{
|
|
/// <summary>
|
|
/// Determine whether or not this data set is small enough to be safely fit into any array
|
|
/// within the context of a slice application (will be filtered, sent to viewer, etc).
|
|
/// </summary>
|
|
bool IsDataArraySized
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|
|
|