Visual Basic (Declaration) | |
---|---|
Public Overloads Overridable Sub SendData( _ ByVal dataSamples As IEnumerable(Of ArraySegment(Of Single)), _ ByVal channelIndexes As IEnumerable(Of Integer) _ ) |
C# | |
---|---|
public virtual void SendData( IEnumerable<ArraySegment<float>> dataSamples, IEnumerable<int> channelIndexes ) |
C++/CLI | |
---|---|
public: virtual void SendData( IEnumerable<ArraySegment<float>>^ dataSamples, IEnumerable<int>^ channelIndexes ) |
Parameters
- dataSamples
- Time series data blocks (one block per specified channel, as element in array) to be consumed by attached Measurement. If UserInputSetup.IsComplexData is true, complex data is expected, and presented in this parameter as alternating real and imaginary values.
- channelIndexes
- Channel indexes corresponding to blocks of data in dataSamples array.
Send data for multiple channels into first-in-first-out (FIFO) buffers to be consumed by attached Measurement. Data can be sent for a single channel using UserInputDataChannel.SendData. when copying the data, just copying from the offset of the arraySegment and copied size is the count of the arraySegment
Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)