Files
DP44/Common/DTS.Common.DAS.Concepts/.svn/pristine/a2/a2085cb0b4001487187f2b243e5a39838fb94536.svn-base
2026-04-17 14:55:32 -04:00

28 lines
688 B
Plaintext

/*
* 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;
}
}
}