2017-04-17 15:52:31 +00:00
|
|
|
/**
|
|
|
|
* The message type for events.
|
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
|
|
|
export const MESSAGE_TYPE_EVENT = 'event';
|
|
|
|
|
|
|
|
/**
|
2017-05-02 22:39:36 +00:00
|
|
|
* The message type for requests.
|
2017-04-17 15:52:31 +00:00
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2017-05-02 22:39:36 +00:00
|
|
|
export const MESSAGE_TYPE_REQUEST = 'request';
|
2017-04-17 15:52:31 +00:00
|
|
|
|
|
|
|
/**
|
2017-05-02 22:39:36 +00:00
|
|
|
* The message type for responses.
|
2017-04-17 15:52:31 +00:00
|
|
|
*
|
|
|
|
* @type {string}
|
|
|
|
*/
|
2017-05-02 22:39:36 +00:00
|
|
|
export const MESSAGE_TYPE_RESPONSE = 'response';
|