serialize_bar_code_model🔗
Short description🔗
serialize_bar_code_model — Serialize a bar code model.
Signature🔗
serialize_bar_code_model( barcode BarCodeHandle, out serialized_item SerializedItemHandle )
Description🔗
serialize_bar_code_model serializes a bar code model (see
fwrite_serialized_item for an introduction of the basic
principle of serialization). The same data that is written in a
file by write_bar_code_model is converted to a serialized item.
The bar code model is defined by the handle BarCodeHandle.
The serialized model is returned by the handle
SerializedItemHandle and can be deserialized by
deserialize_bar_code_model.
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
BarCodeHandle (input_control) barcode → (handle)
Handle of the bar code model.
SerializedItemHandle (output_control) serialized_item → (handle)
Handle of the serialized item.
Result🔗
The operator serialize_bar_code_model returns the value 2 (H_MSG_TRUE)
if the passed handle of the bar code model is valid and if the model
can be serialized into the serialized item.
Otherwise, an exception is raised.
Combinations with other operators🔗
Combinations
Possible successors
fwrite_serialized_item, send_serialized_item, deserialize_bar_code_model
See also
Module🔗
Bar Code