This library provides transparent and easy way of sending data, events and commands to the Platform Server. More...
#include "libAwtDaProtocol.h"
#include <stdint.h>
Typedefs | |
typedef struct AwtDataContainer | AwtDataContainer |
Data Container context. | |
typedef struct AwtDataManager | AwtDataManager |
Library context. | |
typedef void(* | AwtOnAckCB )(int32_t requestId, AwtDaObject *response, void *pUserData) |
Callback type for acknowledgment reception. |
This library provides transparent and easy way of sending data, events and commands to the Platform Server.
typedef struct AwtDataContainer AwtDataContainer |
Data Container context.
Necessary when the user want to send data.
typedef struct AwtDataManager AwtDataManager |
Library context.
This is the handle that enable data setup and communication with the server.
typedef void(* AwtOnAckCB)(int32_t requestId, AwtDaObject *response, void *pUserData) |
Callback type for acknowledgment reception.
The user data value is the one given in the AWT_HL_S_DataManager_Create function.
requestId | the request ID that is returned by AWT_HL_S_DataManager_AddXXX functions. | |
response | the response message. The object needs to be released when done with it, see AWT_DaObject_Release. |