EnumBufferOverflowProtectionMode
BufferOverflowProtectionMode describes the protection modes to manage situations when the ImageSourceAdapter’s buffer exceeds its capacity.
Definition
Assembly: dynamsoft_capture_vision_flutter
enum EnumBufferOverflowProtectionMode {
block,
update
}
Members
| Member | Description |
|---|---|
block |
New images are blocked when the buffer is full. |
update |
New images are appended at the end, and the oldest images are pushed out from the beginning if the buffer is full. |