Click or drag to resize
DaqDeviceSignalBufferOverflowed Event
Indicates that one or more Signals has overflowed its internal buffer

Namespace: GLNeuroTech.Devices.Common
Assembly: GLNeuroTech.Devices.Common (in GLNeuroTech.Devices.Common.dll) Version: 1.2.3.5 (1.2.3.5)
Syntax
public event EventHandler<SignalDataEventArgs> SignalBufferOverflowed

Value

Type: SystemEventHandlerSignalDataEventArgs
Remarks
When data is read from a device, the data is stored in Signal objects, each of which use an internal buffer. If data is not read from the signal in a timely manner, the buffer can reach its capacity and a SignalBufferOverflowed event is raised. To avoid this error, subscribe to a SignalGroup's OnDataArrived event and read data from the signal.
See Also