1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-19 16:42:09 +03:00

Mark events which fail to send.

This commit is contained in:
Kegan Dougal
2015-06-18 09:32:04 +01:00
parent d74a71cc2d
commit d151ac49f2
6 changed files with 18 additions and 8 deletions

View File

@@ -12,11 +12,10 @@
* @enum {string}
*/
module.exports.EventStatus = {
UNKNOWN: "unknown",
SENT: "sent",
/** The event was not sent and will no longer be retried. */
NOT_SENT: "not_sent",
SENDING: "sending",
INCOMING: "incoming"
/** The event is in the process of being sent. */
SENDING: "sending"
};
/**