Barcode Selection Session

Defined in package com.scandit.datacapture.barcode.selection

BarcodeSelectionSession
class BarcodeSelectionSession

Added in version 6.9.0

Holds the ongoing state of a running BarcodeSelection. An instance of this class is passed to BarcodeSelectionListener.onSelectionUpdated() when new barcodes are selected or currently selected barcodes are unselected.

Important

The barcode selection session should only be accessed from within onSelectionUpdated() to which it is provided as an argument. It is not safe to be accessed from anywhere else since it may be concurrently modified.

Specifically no reference to selectedBarcodes should be kept and traversed outside of onSelectionUpdated(). Instead a copy of the list should be made to avoid concurrent modification. The individual barcodes can be referenced without copying as they are not further modified.

newlySelectedBarcodes
@NonNull List<@NonNull Barcode> getNewlySelectedBarcodes()

Added in version 6.9.0

List of codes that were newly selected in the last processed frame.

newlyUnselectedBarcodes
@NonNull List<@NonNull Barcode> getNewlyUnselectedBarcodes()

Added in version 6.9.0

List of codes that were unselected in the last processed frame.

selectedBarcodes
@NonNull List<@NonNull Barcode> getSelectedBarcodes()

Added in version 6.9.0

List of currently selected codes.

selectUnselectedBarcodes()
void selectUnselectedBarcodes()

Added in version 6.12.0

Select all the unselected barcodes that are currently being tracked in this barcode selection session.

reset()
void reset()

Added in version 6.9.0

Resets the barcode selection session, effectively clearing the history of selected codes. This function should only be called inside the listeners’ callback. To call it from another thread, use BarcodeSelection.reset().

getCount(barcode)
int getCount(@NonNull Barcode barcode)

Added in version 6.9.0

Returns how many times the given Barcode was selected.

frameSequenceId
long getFrameSequenceId()

Added in version 6.9.0

The identifier of the current frame sequence.

Important

As long as there is no interruptions of frames coming from the camera, the frameSequenceId will stay the same.

lastProcessedFrameId
int getLastProcessedFrameId()

Added in version 6.9.0

The identifier of the last processed frame.

toJson()
@NonNull String toJson()

Added in version 6.10.0

Returns the JSON representation of the barcode tracking session.