Barcode Batch Listener

Defined in namespace Scandit.DataCapture.Barcode.Batch.Capture

IBarcodeBatchListener
interface IBarcodeBatchListener

Added in version 7.0.0

The BarcodeBatch listener is the main way for hooking into BarcodeBatch. It provides a callback that is invoked when the state of tracked barcodes changes.

OnObservationStarted()
void OnObservationStarted(BarcodeBatch barcodeBatch)

Added in version 7.0.0

Called when the listener starts observing the BarcodeBatch instance.

OnObservationStopped()
void OnObservationStopped(BarcodeBatch barcodeBatch)

Added in version 7.0.0

Called when the listener stops observing the BarcodeBatch instance.

OnSessionUpdated()
void OnSessionUpdated(BarcodeBatch barcodeBatch, BarcodeBatchSession session, IFrameData frameData)

Added in version 7.0.0

Invoked after Barcode Batch has completed to process a frame.

BarcodeBatchEventArgs
class BarcodeBatchEventArgs : EventArgs

Added in version 7.0.0

Provides data for the BarcodeBatch.SessionUpdated event.

BarcodeBatchEventArgs()
BarcodeBatchEventArgs(BarcodeBatch barcodeBatch, BarcodeBatchSession session, IFrameData frameData)

Added in version 7.0.0

BarcodeBatch
BarcodeBatch BarcodeBatch { get; }

Added in version 7.0.0

Session
BarcodeBatchSession Session { get; }

Added in version 7.0.0

FrameData
IFrameData FrameData { get; }

Added in version 7.0.0