CVBpy 14.0
RingBufferLockMode Class Reference

Lock mode options for the ring buffer. More...

Inherits object.

Static Public Attributes

int Auto = 0
 Buffer is automatically unlocked while streaming. More...
 
int Off = 1
 Buffers are not locked at all. More...
 
int On = 2
 Buffer is locked after acquisition. More...
 

Detailed Description

Lock mode options for the ring buffer.

Member Data Documentation

◆ Auto

int Auto = 0
static

Buffer is automatically unlocked while streaming.

Traditional CVB behavior when you are using any of the acquisition interfaces.

◆ Off

int Off = 1
static

Buffers are not locked at all.

Images are simply written in the ring buffer and overwrite existing image data.

◆ On

int On = 2
static

Buffer is locked after acquisition.

Has to be manually unlocked via RingBufferImage.Unlock() method. If all buffers are locked the system looses images.