vx_evt_publication_state_changed
Reference the Vivox Core SDK API.
Read time 1 minuteLast updated 20 hours ago
Raised when the publication state has changed.
#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 login request. |
| char * | alias_username The alias associated with this publication. |
| vx_publication_state_change_state | state The state of the publication. |
| vx_buddy_presence_state | presence The presence code. |
| char * | custom_message A custom message string when presence is set. |
| int | status_code Code used to identify why a state change has been made. |
| char * | status_string Text (in English) used to describe the status code. |
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 login request.VX_HANDLE account_handle;
variable alias_username
The alias associated with this publication.char * alias_username;
variable state
The state of the publication.vx_publication_state_change_state state;
variable presence
The presence code. The following list details possible values:vx_buddy_presence_state presence;
- 0 - buddy_presence_offline
- 2 - buddy_presence_online
- 3 - buddy_presence_busy
- 4 - buddy_presence_brb
- 5 - buddy_presence_away
- 6 - buddy_presence_onthephone
- 7 - buddy_presence_outtolunch
variable custom_message
A custom message string when presence is set.char * custom_message;
variable status_code
Code used to identify why a state change has been made.int status_code;
variable status_string
Text (in English) used to describe the status code.char * status_string;