vx_evt_user_app_data
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 20 hours ago
Raised when a message from another user is received. 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 * | from_uri The URI of the account sending the message. |
| char * | content_type The type of the incoming data. |
| char * | content The content of the message being received from the specified account. |
Detailed Description
Raised when a message from another user is received. See: vx_req_account_send_user_app_data Note: This is not to be confused with IMs - this is a P2P communication mechanism for applications to communicate custom content.struct vx_evt_user_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 from_uri
The URI of the account sending the message.char * from_uri;
variable content_type
The type of the incoming data.char * content_type;
variable content
The content of the message being received from the specified account.char * content;