Table of Contents

Enum DataUpdateTypes

Namespace
LiveScope.Net
Assembly
LiveScope.Net.dll

Determines how data buffer is modified each time new data is available

public enum DataUpdateTypes

Fields

Append = 1

Append new data to the end of the buffer, starting back at 0 when the buffer is full

Uses a methodology similar to a circular buffer. Useful for long streams of continuous data

Using this mode, typically the buffer size is much larger than the number of samples which are to be viewed

Replace = 0

Replace the entire buffer with new data received from the user

This is the simplest method of updating data and relies on the caller to facilitate timing of when the series data is refreshed

Useful for very frequent updates

Using this mode, typically the buffer size is set to exactly equal to the number of samples which are to be viewed