Barcode Batch Deserializer Listener

Defined in package com.scandit.datacapture.barcode.batch.serialization

Warning

The deserialization API is not yet stable and will still change over the coming releases.

BarcodeBatchDeserializerListener
interface BarcodeBatchDeserializerListener

Added in version 7.0.0

The listener for the barcode capture deserializer.

onModeDeserializationStarted(deserializer, mode, json)
fun onModeDeserializationStarted(deserializer: BarcodeBatchDeserializer,
        mode: BarcodeBatch,
        json: JsonValue)

Added in version 7.0.0

Called before the deserialization of Barcode Batch started. This is the point to overwrite defaults before the deserialization is performed.

onModeDeserializationFinished(deserializer, mode, json)
fun onModeDeserializationFinished(deserializer: BarcodeBatchDeserializer,
        mode: BarcodeBatch,
        json: JsonValue)

Added in version 7.0.0

Called when the deserialization of Barcode Batch finished. This is the point to do additional deserialization.

onSettingsDeserializationStarted(deserializer, settings, json)
fun onSettingsDeserializationStarted(deserializer: BarcodeBatchDeserializer,
        settings: BarcodeBatchSettings,
        json: JsonValue)

Added in version 7.0.0

Called before the deserialization of the Barcode Batch settings started. This is the point to overwrite defaults before the deserialization is performed.

onSettingsDeserializationFinished(deserializer, settings, json)
fun onSettingsDeserializationFinished(deserializer: BarcodeBatchDeserializer,
        settings: BarcodeBatchSettings,
        json: JsonValue)

Added in version 7.0.0

Called when the deserialization of the Barcode Batch settings finished. This is the point to do additional deserialization.

onBasicOverlayDeserializationStarted(deserializer, overlay, json)
fun onBasicOverlayDeserializationStarted(deserializer: BarcodeBatchDeserializer,
        overlay: BarcodeBatchBasicOverlay,
        json: JsonValue)

Added in version 7.0.0

Called before the deserialization of the Barcode Batch basic overlay started. This is the point to overwrite defaults before the deserialization is performed.

onBasicOverlayDeserializationFinished(deserializer, overlay, json)
fun onBasicOverlayDeserializationFinished(
        deserializer: BarcodeBatchDeserializer,
        overlay: BarcodeBatchBasicOverlay,
        json: JsonValue)

Added in version 7.0.0

Called when the deserialization of the Barcode Batch basic overlay finished. This is the point to do additional deserialization.

onAdvancedOverlayDeserializationStarted(deserializer, overlay, json)
fun onAdvancedOverlayDeserializationStarted(
        deserializer: BarcodeBatchDeserializer,
        overlay: BarcodeBatchAdvancedOverlay,
        json: JsonValue)

Added in version 7.0.0

Called before the deserialization of the Barcode Batch advanced overlay started. This is the point to overwrite defaults before the deserialization is performed.

onAdvancedOverlayDeserializationFinished(deserializer, overlay, json)
fun onAdvancedOverlayDeserializationFinished(
        deserializer: BarcodeBatchDeserializer,
        overlay: BarcodeBatchAdvancedOverlay,
        json: JsonValue)

Added in version 7.0.0

Called when the deserialization of the Barcode Batch advanced overlay finished. This is the point to do additional deserialization.