DocumentDetector.threadCount Property¶
Module: DocumentDetector
Type: int
Definition¶
Number of threads to use for detection.
Hint
Default value is 1. Allocating more than 1 thread here can increase the speed of the process.
thread_count: int
Exceptions
An error has occurred during Document Library execution.
int get threadCount => getThreadCount();
set threadCount(int value) => setThreadCount(value);
Exceptions
An error has occurred during Document Library execution.
public int threadCount
{
get => GetthreadCount();
set => SetthreadCount(ref value);
}
Exceptions
An error has occurred during Document Library execution.
public int getThreadCount() throws DocumentException
public void setThreadCount(int threadCount) throws DocumentException
Exceptions
An error has occurred during Document Library execution.
public var threadCount: Int
get {
return Int(try! getThreadCount())
}
}
Exceptions
An error has occurred during Document Library execution.
int id3DocumentDetector_GetThreadCount (ID3_DOCUMENT_DETECTOR hDocumentDetector, int * threadCount)
int id3DocumentDetector_SetThreadCount (ID3_DOCUMENT_DETECTOR hDocumentDetector, int threadCount)
Returns