File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -543,6 +543,19 @@ command with the ``--all`` option:
543543
544544 The ``--all `` option was introduced in Symfony 7.1.
545545
546+ The ``--keepalive `` option can be used to prevent messages from being prematurely
547+ redelivered during long-running processing. It marks the message as "in progress"
548+ and prevents it from being redelivered until the worker finishes processing it.
549+
550+ .. note ::
551+
552+ This option is only available for supported transports, which are
553+ the Beanstalkd and AmazonSQS transports.
554+
555+ .. versionadded :: 7.2
556+
557+ The ``--keepalive `` option was introduced in Symfony 7.2.
558+
546559.. tip ::
547560
548561 In a development environment and if you're using the Symfony CLI tool,
@@ -1709,6 +1722,10 @@ The transport has a number of options:
17091722 The message time to run before it is put back in the ready queue - in
17101723 seconds.
17111724
1725+ .. versionadded :: 7.2
1726+
1727+ Keepalive support, using the ``--keepalive `` option, was added in Symfony 7.2.
1728+
17121729.. _messenger-redis-transport :
17131730
17141731Redis Transport
@@ -2031,6 +2048,10 @@ The transport has a number of options:
20312048 FIFO queues don't support setting a delay per message, a value of ``delay: 0 ``
20322049 is required in the retry strategy settings.
20332050
2051+ .. versionadded :: 7.2
2052+
2053+ Keepalive support, using the `--keepalive ` option, was added in Symfony 7.2.
2054+
20342055Serializing Messages
20352056~~~~~~~~~~~~~~~~~~~~
20362057
You can’t perform that action at this time.
0 commit comments