CommsChampion Ecosystem MQTT-SN Client
MQTT-SN client library.
|
Classes | |
struct | CC_MqttsnUnsubscribeConfig |
Configuration the "unsubscribe" operation. More... | |
Typedefs | |
typedef void(* | CC_MqttsnUnsubscribeCompleteCb) (void *data, CC_MqttsnUnsubscribeHandle handle, CC_MqttsnAsyncOpStatus status) |
Callback used to report completion of the unsubscribe operation. | |
typedef void(* CC_MqttsnUnsubscribeCompleteCb) (void *data, CC_MqttsnUnsubscribeHandle handle, CC_MqttsnAsyncOpStatus status) |
Callback used to report completion of the unsubscribe operation.
[in] | data | Pointer to user data object, passed as the last parameter to the request call. |
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. When the callback is invoked the handle is already invalid and cannot be used in any relevant function invocation, but it allows end application to identify the original "unsubscribe" operation and use the same callback function in parallel requests. |
[in] | status | Status of the "unsubscribe" operation. |
CC_MqttsnErrorCode cc_mqttsn_client_unsubscribe | ( | CC_MqttsnClientHandle | client, |
const CC_MqttsnUnsubscribeConfig * | config, | ||
CC_MqttsnUnsubscribeCompleteCb | cb, | ||
void * | cbData | ||
) |
Prepare and send "unsubscribe" request in one go.
Abstracts away sequence of the following functions invocation:
[in] | client | Handle returned by cc_mqttsn_client_alloc() function. |
[in] | config | Subscription configuration. |
[in] | cb | Callback to be invoked when "unsubscribe" operation is complete. |
[in] | cbData | Pointer to any user data structure. It will passed as one of the parameters in callback invocation. May be NULL. |
CC_MqttsnErrorCode cc_mqttsn_client_unsubscribe_cancel | ( | CC_MqttsnUnsubscribeHandle | handle | ) |
Cancel the allocated "unsubscribe" operation.
In case the cc_mqttsn_client_unsubscribe_send() function was successfully called before, the operation is cancelled without callback invocation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
CC_MqttsnErrorCode cc_mqttsn_client_unsubscribe_config | ( | CC_MqttsnUnsubscribeHandle | handle, |
const CC_MqttsnUnsubscribeConfig * | config | ||
) |
Perform configuration of the "unsubscribe" operation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
[in] | config | Configuration structure. Must NOT be NULL. Does not need to be preserved after invocation. |
unsigned cc_mqttsn_client_unsubscribe_get_retry_count | ( | CC_MqttsnUnsubscribeHandle | handle | ) |
Retrieve the configured retry count for the "unsubscribe" operation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
unsigned cc_mqttsn_client_unsubscribe_get_retry_period | ( | CC_MqttsnUnsubscribeHandle | handle | ) |
Retrieve the configured retry period for the "unsubscribe" operation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
void cc_mqttsn_client_unsubscribe_init_config | ( | CC_MqttsnUnsubscribeConfig * | config | ) |
Intialize the CC_MqttsnUnsubscribeConfig configuration structure.
[out] | config | Configuration structure. Must not be NULL. |
CC_MqttsnUnsubscribeHandle cc_mqttsn_client_unsubscribe_prepare | ( | CC_MqttsnClientHandle | client, |
CC_MqttsnErrorCode * | ec | ||
) |
Prepare "unsubscribe" operation.
[in] | client | Handle returned by cc_mqttsn_client_alloc() function. |
[out] | ec | Error code reporting result of the operation. Can be NULL. |
CC_MqttsnErrorCode cc_mqttsn_client_unsubscribe_send | ( | CC_MqttsnUnsubscribeHandle | handle, |
CC_MqttsnUnsubscribeCompleteCb | cb, | ||
void * | cbData | ||
) |
Send the "unsubscribe" operation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
[in] | cb | Callback to be invoked when "unsubscribe" operation is complete. |
[in] | cbData | Pointer to any user data structure. It will passed as one of the parameters in callback invocation. May be NULL. |
CC_MqttsnErrorCode cc_mqttsn_client_unsubscribe_set_retry_count | ( | CC_MqttsnUnsubscribeHandle | handle, |
unsigned | count | ||
) |
Configure the retry count for the "unsubscribe" operation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
[in] | count | Number of retries. |
CC_MqttsnErrorCode cc_mqttsn_client_unsubscribe_set_retry_period | ( | CC_MqttsnUnsubscribeHandle | handle, |
unsigned | ms | ||
) |
Configure the retry period for the "unsubscribe" operation.
[in] | handle | Handle returned by cc_mqttsn_client_unsubscribe_prepare() function. |
[in] | ms | Retry period in milliseconds. |