| layout | default-layout |
|---|---|
| title | class CBufferedItemsManager - Dynamsoft Capture Vision Router Module C++ Edition API Reference |
| description | This page shows the C++ edition of the class CBufferedItemsManager in Dynamsoft Capture Vision Router Module. |
| keywords | buffered items manager, c++ |
| needAutoGenerateSidebar | true |
The CBufferedItemsManager class is used to manage the buffered items. It provides methods to get and set the maximum number of buffer items and to get buffer items.
Namespace: dynamsoft::cvr
Assembly: DynamsoftCaptureVisionRouter
class CBufferedItemsManager | Method | Description |
|---|---|
SetMaxBufferedItems |
Sets the maximum number of buffered items. |
GetMaxBufferedItems |
Gets the maximum number of buffered items. |
GetBufferedCharacterItemSet |
Gets the buffered recognized character items. |
Sets the maximum number of buffered items.
virtual void SetMaxBufferedItems(int count)Parameters
[in] count The maximum number of buffered items.
Gets the maximum number of buffered items.
virtual int GetMaxBufferedItems() constReturn value
Returns the maximum number of buffered items.
Gets the buffered recognized character items.
virtual CBufferedCharacterItemSet* GetBufferedCharacterItemSet() constReturn value
Returns the buffered recognized character items.
See Also
[CBufferedCharacterItemSet]({{ site.dlr_cpp_api }}buffered-character-item-set.html)