21.113. Enum QueueMessageStatus

Namespace: ArmoniK.Core.Base
Assembly: ArmoniK.Core.Base.dll

Represents the status of a queue message

public enum QueueMessageStatus

21.113.1. Fields

Cancelled = 5

The message processing has been cancelled. the message can safely be removed from the queue.

Failed = 1

Message processing has failed. The message should be put back at the begin of the queue.

Poisonous = 6

Message has been retried too many times and is considered as poisonous for the queue

Postponed = 3

Task is not ready to be processed. The message should be put at the end of the queue.

Processed = 4

The message has been processed. It can safely be removed from the queue.

Running = 2

The message is being processed.

Waiting = 0

Message is waiting for being processed.