You are here: Symbol Reference > SignalTools Namespace > Structs, Records, Enums > SignalTools.TPipeProcessing Enumeration
DSP Master VCL
ContentsIndex
PreviousUpNext
SignalTools.TPipeProcessing Enumeration

Defines how to process pipes.

Pascal
TPipeProcessing = (
  ppParallel,
  ppSerial
);
Members 
Description 
ppParallel 
All pipes are called one after another on each processing stage, before proceeding to the next. This type of operation is usefull when all channels are interdependent. If a signal is multiplexed (for example) then the next block of data for any of the channels can not be fetched until all channels have processed their current data. 
ppSerial 
Each pipe is first processed in full length before the processing of the next pipe begins. The channels are independent. Fetching a new block of data for one channel will not affect the other channels in any way. 

Pipes connected with TAnalysisList components can be processed in two ways.

Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!