vx_evt_server_app_data
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 20 hours ago
The server can send messages to the SDK that the SDK does not need to consume. More...
#include <VxcEvents.h>Public Attributes
Name | |
|---|---|
| vx_evt_base_t | base The common properties for all events. |
| VX_HANDLE | account_handle The handle returned from a successful account login request. |
| char * | content_type The type of the incoming data. |
| char * | content The content of the message being received from the server. |
Detailed Description
The server can send messages to the SDK that the SDK does not need to consume. These messages are propagated to the application through this event. The application can choose to parse and consume these messages or to ignore them.struct vx_evt_server_app_data;
Public Attributes Documentation
variable base
The common properties for all events.vx_evt_base_t base;
variable account_handle
The handle returned from a successful account login request. See: vx_req_account_loginVX_HANDLE account_handle;
variable content_type
The type of the incoming data.char * content_type;
variable content
The content of the message being received from the server.char * content;