CommsChampion Ecosystem MQTT-SN Client
MQTT-SN client library.
Loading...
Searching...
No Matches
Classes | Typedefs | Functions
"Subscribe Operation Data Types and Functions"

Classes

struct  CC_MqttsnSubscribeConfig
 Configuration the "subscribe" operation. More...
 
struct  CC_MqttsnSubscribeInfo
 Information on the "subscribe" operation completion. More...
 

Typedefs

typedef void(* CC_MqttsnSubscribeCompleteCb) (void *data, CC_MqttsnSubscribeHandle handle, CC_MqttsnAsyncOpStatus status, const CC_MqttsnSubscribeInfo *info)
 Callback used to report completion of the subscribe operation.
 
typedef struct CC_MqttsnSubscribe * CC_MqttsnSubscribeHandle
 Handle for "subscribe" operation.
 
typedef struct CC_MqttsnUnsubscribe * CC_MqttsnUnsubscribeHandle
 Handle for "unsubscribe" operation.
 

Functions

CC_MqttsnErrorCode cc_mqttsn_client_subscribe (CC_MqttsnClientHandle client, const CC_MqttsnSubscribeConfig *config, CC_MqttsnSubscribeCompleteCb cb, void *cbData)
 Prepare and send "subscribe" request in one go.
 
CC_MqttsnErrorCode cc_mqttsn_client_subscribe_cancel (CC_MqttsnSubscribeHandle handle)
 Cancel the allocated "subscribe" operation.
 
CC_MqttsnErrorCode cc_mqttsn_client_subscribe_config (CC_MqttsnSubscribeHandle handle, const CC_MqttsnSubscribeConfig *config)
 Perform configuration of the "subscribe" operation.
 
unsigned cc_mqttsn_client_subscribe_get_retry_count (CC_MqttsnSubscribeHandle handle)
 Retrieve the configured retry count for the "subscribe" operation.
 
unsigned cc_mqttsn_client_subscribe_get_retry_period (CC_MqttsnSubscribeHandle handle)
 Retrieve the configured retry period for the "subscribe" operation.
 
void cc_mqttsn_client_subscribe_init_config (CC_MqttsnSubscribeConfig *config)
 Intialize the CC_MqttsnSubscribeConfig configuration structure.
 
CC_MqttsnSubscribeHandle cc_mqttsn_client_subscribe_prepare (CC_MqttsnClientHandle client, CC_MqttsnErrorCode *ec)
 Prepare "subscribe" operation.
 
CC_MqttsnErrorCode cc_mqttsn_client_subscribe_send (CC_MqttsnSubscribeHandle handle, CC_MqttsnSubscribeCompleteCb cb, void *cbData)
 Send the "subscribe" operation.
 
CC_MqttsnErrorCode cc_mqttsn_client_subscribe_set_retry_count (CC_MqttsnSubscribeHandle handle, unsigned count)
 Configure the retry count for the "subscribe" operation.
 
CC_MqttsnErrorCode cc_mqttsn_client_subscribe_set_retry_period (CC_MqttsnSubscribeHandle handle, unsigned ms)
 Configure the retry period for the "subscribe" operation.
 

Detailed Description

Typedef Documentation

◆ CC_MqttsnSubscribeCompleteCb

typedef void(* CC_MqttsnSubscribeCompleteCb) (void *data, CC_MqttsnSubscribeHandle handle, CC_MqttsnAsyncOpStatus status, const CC_MqttsnSubscribeInfo *info)

Callback used to report completion of the subscribe operation.

Parameters
[in]dataPointer to user data object, passed as the last parameter to the request call.
[in]handleHandle returned by cc_mqttsn_client_subscribe_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 "subscribe" operation and use the same callback function in parallel requests.
[in]statusStatus of the "subscribe" operation.
[in]infoInformation about op completion. Not-NULL is reported if and onfly if the "status" is equal to CC_MqttsnAsyncOpStatus_Complete.
Postcondition
The data members of the reported response can NOT be accessed after the function returns.

◆ CC_MqttsnSubscribeHandle

typedef struct CC_MqttsnSubscribe* CC_MqttsnSubscribeHandle

Handle for "subscribe" operation.

Returned by cc_mqttsn_client_subscribe_prepare() function.

◆ CC_MqttsnUnsubscribeHandle

typedef struct CC_MqttsnUnsubscribe* CC_MqttsnUnsubscribeHandle

Handle for "unsubscribe" operation.

Returned by cc_mqttsn_client_unsubscribe_prepare() function.

Function Documentation

◆ cc_mqttsn_client_subscribe()

CC_MqttsnErrorCode cc_mqttsn_client_subscribe ( CC_MqttsnClientHandle  client,
const CC_MqttsnSubscribeConfig config,
CC_MqttsnSubscribeCompleteCb  cb,
void *  cbData 
)

Prepare and send "subscribe" request in one go.

Abstracts away sequence of the following functions invocation:

Parameters
[in]clientHandle returned by cc_mqttsn_client_alloc() function.
[in]configSubscription configuration.
[in]cbCallback to be invoked when "subscribe" operation is complete.
[in]cbDataPointer to any user data structure. It will passed as one of the parameters in callback invocation. May be NULL.
Returns
Result code of the call.

◆ cc_mqttsn_client_subscribe_cancel()

CC_MqttsnErrorCode cc_mqttsn_client_subscribe_cancel ( CC_MqttsnSubscribeHandle  handle)

Cancel the allocated "subscribe" operation.

In case the cc_mqttsn_client_subscribe_send() function was successfully called before, the operation is cancelled without callback invocation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
Returns
Result code of the call.
Postcondition
The handle of the "subscribe" operation is no longer valid and must be discarded.

◆ cc_mqttsn_client_subscribe_config()

CC_MqttsnErrorCode cc_mqttsn_client_subscribe_config ( CC_MqttsnSubscribeHandle  handle,
const CC_MqttsnSubscribeConfig config 
)

Perform configuration of the "subscribe" operation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
[in]configConfiguration structure. Must NOT be NULL. Does not need to be preserved after invocation.
Returns
Result code of the call.

◆ cc_mqttsn_client_subscribe_get_retry_count()

unsigned cc_mqttsn_client_subscribe_get_retry_count ( CC_MqttsnSubscribeHandle  handle)

Retrieve the configured retry count for the "subscribe" operation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
Returns
Number of retries.

◆ cc_mqttsn_client_subscribe_get_retry_period()

unsigned cc_mqttsn_client_subscribe_get_retry_period ( CC_MqttsnSubscribeHandle  handle)

Retrieve the configured retry period for the "subscribe" operation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
Returns
Retry period duration in milliseconds.

◆ cc_mqttsn_client_subscribe_init_config()

void cc_mqttsn_client_subscribe_init_config ( CC_MqttsnSubscribeConfig config)

Intialize the CC_MqttsnSubscribeConfig configuration structure.

Parameters
[out]configConfiguration structure. Must not be NULL.

◆ cc_mqttsn_client_subscribe_prepare()

CC_MqttsnSubscribeHandle cc_mqttsn_client_subscribe_prepare ( CC_MqttsnClientHandle  client,
CC_MqttsnErrorCode ec 
)

Prepare "subscribe" operation.

Parameters
[in]clientHandle returned by cc_mqttsn_client_alloc() function.
[out]ecError code reporting result of the operation. Can be NULL.
Returns
Handle of the "subscribe" operation, will be NULL in case of failure. To analyze the reason failure use "ec" output parameter.
Postcondition
The "subscribe" operation is allocated, use either cc_mqttsn_client_subscribe_send() or cc_mqttsn_client_subscribe_cancel() to prevent memory leaks.

◆ cc_mqttsn_client_subscribe_send()

CC_MqttsnErrorCode cc_mqttsn_client_subscribe_send ( CC_MqttsnSubscribeHandle  handle,
CC_MqttsnSubscribeCompleteCb  cb,
void *  cbData 
)

Send the "subscribe" operation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
[in]cbCallback to be invoked when "subscribe" operation is complete.
[in]cbDataPointer to any user data structure. It will passed as one of the parameters in callback invocation. May be NULL.
Returns
Result code of the call.
Postcondition
The handle of the "subscribe" operation can be discarded.
The provided callback will be invoked when the "subscribe" operation is complete if and only if the function returns CC_MqttsnErrorCode_Success.

◆ cc_mqttsn_client_subscribe_set_retry_count()

CC_MqttsnErrorCode cc_mqttsn_client_subscribe_set_retry_count ( CC_MqttsnSubscribeHandle  handle,
unsigned  count 
)

Configure the retry count for the "subscribe" operation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
[in]countNumber of retries.
Returns
Result code of the call.

◆ cc_mqttsn_client_subscribe_set_retry_period()

CC_MqttsnErrorCode cc_mqttsn_client_subscribe_set_retry_period ( CC_MqttsnSubscribeHandle  handle,
unsigned  ms 
)

Configure the retry period for the "subscribe" operation.

Parameters
[in]handleHandle returned by cc_mqttsn_client_subscribe_prepare() function.
[in]msRetry period in milliseconds.
Returns
Result code of the call.