A service queue implementation to store messages that the messaging system cannot deliver to their destination or cannot be processed.
If a message fails to process 5 times, it is moved to the DLQ. DevOps can later inspect why it failed.
class DeadLetterQueue(DLQ):\n def __init__(self):\n pass\n\n def execute(self):\n print('Executing Dead Letter Queue (DLQ)')