get_deserialize_func
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
x |
|
x |
|
x |
Function Description
Obtains the registered deserialization function based on the message type ID.
Prototype
1 | get_deserialize_func(msg_type) |
Parameters
Parameter |
Data Type |
Description |
|---|---|---|
msg_type |
int |
ID of the registered type. |
Returns
Registered deserialization function. If no serialization function is registered, None is returned.
Examples
1 2 | import dataflow as df deserialize_func = df.msg_type_register.get_deserialize_func(1026) |
Constraints
None
Parent topic: dataflow.MsgTypeRegister