Files

28 lines
681 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
/*
* DTS.Channel.ILargeDataAware
*
* Copyright © 2009
* Diversified Technical Systems, Inc.
* All Rights Reserved
*/
namespace DTS.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;
}
}
}