init
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user