added ack constants and brief example

This commit is contained in:
Pedro Lopez
2020-02-26 23:18:09 -04:00
parent bb4ad11bfa
commit e6ef5929fc
2 changed files with 30 additions and 0 deletions

View File

@@ -91,3 +91,17 @@ exports.WAState = {
UNPAIRED: 'UNPAIRED',
UNPAIRED_IDLE: 'UNPAIRED_IDLE'
};
/**
* Message ACK
* @readonly
* @enum {number}
*/
exports.MESSAGE_ACK = {
ACK_ERROR: -1,
ACK_PENDING: 0,
ACK_SERVER: 1,
ACK_DEVICE: 2,
ACK_READ: 3,
ACK_PLAYED: 4,
};