BarcodeReader.waitForCapture Method¶
Module: BarcodeReader
Definition¶
Blocks until new capture data is available or a timeout occurs.
wait_for_capture(self, timeout: int, do_event: bool) -> bool
Parameters
timeout
intin The maximum time to wait for new data.do_event
boolin Call doEvent() in the wait loop.
Returns
bool
Outputs whether new capture data is available following the wait.
Exceptions
An error has occurred during Devices Library execution.
bool waitForCapture(int timeout, bool doEvent)
Parameters
timeout
intin The maximum time to wait for new data.doEvent
boolin Call doEvent() in the wait loop.
Returns
bool
Outputs whether new capture data is available following the wait.
Exceptions
An error has occurred during Devices Library execution.
public bool WaitForCapture(int timeout, bool doEvent)
Parameters
timeout
intin The maximum time to wait for new data.doEvent
boolin Call doEvent() in the wait loop.
Returns
bool
Outputs whether new capture data is available following the wait.
Exceptions
An error has occurred during Devices Library execution.
public boolean waitForCapture(int timeout, boolean doEvent) throws DevicesException
Parameters
timeout
intin The maximum time to wait for new data.doEvent
booleanin Call doEvent() in the wait loop.
Returns
boolean
Outputs whether new capture data is available following the wait.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesBarcodeReader_WaitForCapture (
ID3_DEVICES_BARCODE_READER hBarcodeReader,
int timeout,
bool doEvent,
bool * available)
Parameters
hBarcodeReader
ID3_DEVICES_BARCODE_READERin Handle to the BarcodeReader object.timeout
intin The maximum time to wait for new data.doEvent
boolin Call doEvent() in the wait loop.available
bool *out Outputs whether new capture data is available following the wait.
Returns