/* * DTS.Channel.ILargeDataAware * * Copyright © 2009 * Diversified Technical Systems, Inc. * All Rights Reserved */ namespace DTS.DAS.Concepts.DAS.Channel { /// /// Definition of what it means for a DAS channel to be "large data aware". /// /// public interface ILargeDataAware { /// /// 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). /// bool IsDataArraySized { get; } } }