FingerPad.threadCount Property¶
Module: FingerPad
Type: int
Definition¶
Number of threads to use for PAD.
Hint
Default value is 1. Allocating more than 1 thread here can increase the speed of the process.
int get threadCount => getThreadCount();
set threadCount(int value) => setThreadCount(value);
Exceptions
An error has occurred during Finger Library execution.
public int threadCount
{
get => GetthreadCount();
set => SetthreadCount(ref value);
}
Exceptions
An error has occurred during Finger Library execution.
public int getThreadCount() throws FingerException
public void setThreadCount(int threadCount) throws FingerException
Exceptions
An error has occurred during Finger Library execution.
public var threadCount: Int
get {
return Int(try! getThreadCount())
}
}
Exceptions
An error has occurred during Finger Library execution.
int id3FingerPad_GetThreadCount (ID3_FINGER_PAD hFingerPad, int * threadCount)
int id3FingerPad_SetThreadCount (ID3_FINGER_PAD hFingerPad, int threadCount)
Returns