FingerScanner.waitForCapture Method¶
Module: FingerScanner
Definition¶
Waits for a new capture to complete within a specified timeout.
wait_for_capture(self, timeout: int, do_event: bool) -> bool
Parameters
timeout
intin Maximum time to wait for a new capture, in milliseconds.do_event
boolin Call doEvent() in the wait loop.
Returns
bool
Indicates whether a new capture is available.
Exceptions
An error has occurred during FingerCapture Library execution.
bool waitForCapture(int timeout, bool doEvent)
Parameters
timeout
intin Maximum time to wait for a new capture, in milliseconds.doEvent
boolin Call doEvent() in the wait loop.
Returns
bool
Indicates whether a new capture is available.
Exceptions
An error has occurred during FingerCapture Library execution.
public bool WaitForCapture(int timeout, bool doEvent)
Parameters
timeout
intin Maximum time to wait for a new capture, in milliseconds.doEvent
boolin Call doEvent() in the wait loop.
Returns
bool
Indicates whether a new capture is available.
Exceptions
An error has occurred during FingerCapture Library execution.
int id3CaptureFingerScanner_WaitForCapture (
ID3_FINGER_CAPTURE_FINGER_SCANNER hFingerScanner,
int timeout,
bool doEvent,
bool * available)
Parameters
hFingerScanner
ID3_FINGER_CAPTURE_FINGER_SCANNERin Handle to the FingerScanner object.timeout
intin Maximum time to wait for a new capture, in milliseconds.doEvent
boolin Call doEvent() in the wait loop.available
bool *out Indicates whether a new capture is available.
Returns