BufferedItemsManager
The BufferedItemsManager
class is used to manage the buffered items.
Definition
Assembly: DynamsoftCore.xcframework
- Objective-C
- Swift
@interface DSBufferedItemsManager : NSObject
class BufferedItemsManager : NSObject
Methods
Method | Description |
---|---|
setMaxBufferedItems |
Set the maximum number of buffered items. |
getMaxBufferedItems |
Get the maximum number of buffered items. |
getBufferedCharacterItemSet |
Get the buffered item set. |
setMaxBufferedItems
Set the maximum number of buffered items.
- Objective-C
- Swift
-(void)setMaxBufferedItems:(NSInteger)maxBufferedItems;
func setMaxBufferedItems(_ maxBufferedItems: Int)
Parameters
[in] count
: The maximum number of buffered items.
getMaxBufferedItems
Get the maximum number of buffered items.
- Objective-C
- Swift
-(NSInteger)getMaxBufferedItems;
func getMaxBufferedItems() -> Int
Return Value
The maximum number of buffered items.
getBufferedCharacterItemSet
Get the buffered item set.
- Objective-C
- Swift
-(DSBufferedCharacterItemSet *)getBufferedCharacterItemSet;
func getBufferedCharacterItemSet() -> BufferedCharacterItemSet
Return Value
The buffered item set.