Unify Framework Lib 1.7.0
|
This module defines necessary API for using resolver. More...
Go to the source code of this file.
This module defines necessary API for using resolver.
typedef void(* resolver_on_set_rule_registered_t) (attribute_store_type_t) |
Function prototype for getting notified of set rules.
enum resolver_rule_type_t |
Status code for the frame transmission.
attribute_resolver_function_t attribute_resolver_get_function | ( | attribute_store_type_t | node_type | ) |
Return the get function for a given attribute type.
node_type |
bool attribute_resolver_has_get_rule | ( | attribute_store_type_t | node_type | ) |
Returns if the Rule Book can resolve a Get Rule for the attribute type.
node_type | The attribute Store node type for which we want to know if there is a Get rule registered. |
bool attribute_resolver_has_set_rule | ( | attribute_store_type_t | node_type | ) |
Returns if the Rule Book can resolve a Set Rule for the attribute type.
node_type | The attribute Store node type for which we want to know if there is a Set rule registered. |
void attribute_resolver_register_set_rule_listener | ( | resolver_on_set_rule_registered_t | function | ) |
Registers a callback/listening function for the known set rules. This function will be invoked for each known attribute store type that can be set.
function | The function to call to notify of new set rules |
attribute_resolver_function_t attribute_resolver_set_function | ( | attribute_store_type_t | node_type | ) |
Return the set function for a given attribute type.
node_type |
void on_resolver_send_data_complete | ( | resolver_send_status_t | status, |
clock_time_t | transmit_time, | ||
attribute_store_node_t | node, | ||
resolver_rule_type_t | rule_type | ||
) |
Callback function which must be called when frame tranmission is done.
This function must be called when a frame sent using attribute_resolver_send is done.
status | Status of transmission |
node | Attribute node for which the frame was sent. |
transmit_time | dureation of the transmission |
rule_type | The rule type that was used for resolution. |