Optional. The retry algorithm to apply when determining when to try to send an event again. Defaults to MatrixScheduler.RETRY_BACKOFF_RATELIMIT.
Default retry algorithm for the matrix scheduler. Retries events up to 4 times with exponential backoff.
Number of attempts that have been made, including the one that just failed (ie. starting at 1)
Optional. The queuing algorithm to apply when determining which events should be sent before the given event. Defaults to MatrixScheduler.QUEUE_MESSAGES.
Queues m.room.message
events and lets other events continue
concurrently.
Readonly
queueThe queuing algorithm to apply to events. This function must be idempotent as
it may be called multiple times with the same event. All queues created are
serviced in a FIFO manner. To send the event ASAP, return null
which will not put this event in a queue. Events that fail to send that form
part of a queue will be removed from the queue and the next event in the
queue will be sent.
Queues m.room.message
events and lets other events continue
concurrently.
Readonly
retryThe retry algorithm to apply when retrying events. To stop retrying, return
-1
. If this event was part of a queue, it will be removed from
the queue.
Default retry algorithm for the matrix scheduler. Retries events up to 4 times with exponential backoff.
Number of attempts that have been made, including the one that just failed (ie. starting at 1)
The number of milliseconds to wait before trying again. If
this is 0, the request will be immediately retried. If this is
-1
, the event will be marked as
EventStatus.NOT_SENT and will not be retried.
Retrieve a queue based on an event. The event provided does not need to be in the queue.
An event to get the queue for.
A shallow copy of events in the queue or null. Modifying this array will not modify the list itself. Modifying events in this array will modify the underlying event in the queue.
Queue an event if it is required and start processing queues.
The event that may be queued.
A promise if the event was queued, which will be resolved or rejected in due time, else null.
Remove this event from the queue. The event is equal to another event if they have the same ID returned from event.getId().
The event to remove.
True if this event was removed.
Set the process function. Required for events in the queue to be processed. If set after events have been added to the queue, this will immediately start processing them.
The function that can process events in the queue.
Static
QUEUE_Queues m.room.message
events and lets other events continue
concurrently.
Static
RETRY_Default retry algorithm for the matrix scheduler. Retries events up to 4 times with exponential backoff.
Number of attempts that have been made, including the one that just failed (ie. starting at 1)
Construct a scheduler for Matrix. Requires MatrixScheduler#setProcessFunction to be provided with a way of processing events.