Table of contents

BufferedItemsManager

BufferedItemsManager 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.

Definition

Module: dynamsoft_capture_vision_router

class BufferedItemsManager

Methods

Method Description
set_max_buffered_items_count Sets the maximum number of buffered items.
get_max_buffered_items_count Gets the maximum number of buffered items.
get_buffered_character_item_set Gets the buffered recognized character items.

set_max_buffered_items_count

Sets the maximum number of buffered items.

def set_max_buffered_items_count(self, count: int) -> None:

Parameters

count The maximum number of buffered items.

get_max_buffered_items_count

Gets the maximum number of buffered items.

def get_max_buffered_items_count(self) -> int:

Return value

Returns the maximum number of buffered items.

get_buffered_character_item_set

Gets the buffered recognized character items.

def get_buffered_character_item_set(self) -> "BufferedCharacterItemSet":

Return value

Returns the buffered recognized character items.

See Also

BufferedCharacterItemSet

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: