enum class TBufferType : unsigned int;
Defines signal buffering type.
Defines how the data is managed within the buffer.
Values
| Name | Description |
|---|---|
| bftScrolling | The data resides in the buffer until new data comming in to the buffer pushes it out. This mode is usefull for signal analysis. |
| bftStoring | The buffer will be increasing until some user defined size is reached. The buffer must then be reset. |
| bftStreaming | Once the data is read, it is "deleted" from the buffer. This mode is usefull for filtering and signal processing. |