Feature: #106261 - Align command line arguments of message consumer with Symfony original 

See forge#106261

Description 

This change aligns the command line arguments of the TYPO3 Console messenger:consume command with the original Symfony Messenger implementation.

The following new options have been added:

  • --limit / -l: Limits the number of received messages.
  • --failure-limit / -f: Limits the number of failed messages the worker can consume.
  • --memory-limit / -m: Sets the memory limit available to the worker.
  • --time-limit / -t: Sets the time limit in seconds during which the worker can handle new messages.
  • --bus / -b: Specifies the name of the bus to which received messages are dispatched.
  • --all: Consumes messages from all receivers.
  • --keepalive: Uses the transport keepalive mechanism, if implemented.

Scheduler integration 

The command can be configured as a scheduler task in TYPO3, enabling automated consumption of messages from the configured transports. This is particularly useful for processing asynchronous messages in the background.

This integration helps projects adopt asynchronous message handling by providing a reliable way to process messages without manual intervention. Messages can be dispatched asynchronously during normal request handling and consumed in the background by the scheduler task, improving application performance and user experience.

Usage 

Consume messages from a specific receiver:

vendor/bin/typo3 messenger:consume my_receiver
Copied!

Consume messages with a message limit:

vendor/bin/typo3 messenger:consume my_receiver --limit=10
Copied!

Stop the worker after 2 failed messages:

vendor/bin/typo3 messenger:consume my_receiver --failure-limit=2
Copied!

Stop the worker when the memory limit is exceeded:

vendor/bin/typo3 messenger:consume my_receiver --memory-limit=128M
Copied!

Stop the worker after a time limit:

vendor/bin/typo3 messenger:consume my_receiver --time-limit=3600
Copied!

Consume from specific queues only:

vendor/bin/typo3 messenger:consume my_receiver --queues=fasttrack
Copied!

Consume from all configured receivers:

vendor/bin/typo3 messenger:consume --all
Copied!