Data Capture Context Deserializer Listener#
Defined in framework ScanditCaptureCore
Warning
The deserialization API is not yet stable and will still change over the coming releases.
-
SDCDataCaptureContextDeserializerDelegate
# @protocol SDCDataCaptureContextDeserializerDelegate
<NSObject>Added in version 6.1.0
The listener for the frame source deserializer.
-
- contextDeserializer:didStartDeserializingContext:fromJSONValue:
# - (
void
)contextDeserializer:(SDCDataCaptureContextDeserializer *)deserializer didStartDeserializingContext:(SDCDataCaptureContext *)context fromJSONValue:(SDCJSONValue *)JSONValueAdded in version 6.1.0
Called before the deserialization of the context started. This is the point to overwrite defaults before the deserialization is performed.
-
- contextDeserializer:didFinishDeserializingContext:fromJSONValue:
# - (
void
)contextDeserializer:(SDCDataCaptureContextDeserializer *)deserializer didFinishDeserializingContext:(SDCDataCaptureContext *)context fromJSONValue:(SDCJSONValue *)JSONValueAdded in version 6.1.0
Called when the deserialization of the context finished. This is the point to do additional deserialization.
-