@@ -1713,6 +1713,10 @@ The Beanstalkd transport DSN may looks like this:
1713
1713
1714
1714
The transport has a number of options:
1715
1715
1716
+ ``keepalive `` (default: none)
1717
+ The amount of time, in seconds, the consumer can take to process the message
1718
+ without considering it timed out.
1719
+
1716
1720
``tube_name `` (default: ``default ``)
1717
1721
Name of the queue
1718
1722
@@ -1726,7 +1730,7 @@ The transport has a number of options:
1726
1730
1727
1731
.. versionadded :: 7.2
1728
1732
1729
- Keepalive support, using the `` -- keepalive `` option, was added in Symfony 7.2.
1733
+ The `` keepalive `` option was introduced in Symfony 7.2.
1730
1734
1731
1735
.. _messenger-redis-transport :
1732
1736
@@ -1997,6 +2001,11 @@ The transport has a number of options:
1997
2001
``endpoint `` (default: ``https://sqs.eu-west-1.amazonaws.com ``)
1998
2002
Absolute URL to the SQS service
1999
2003
2004
+ ``keepalive `` (default: none)
2005
+ The minimum amount of time, in seconds, the message remains invisible to other
2006
+ consumers so you can process it. It's useful to manage long-running tasks or
2007
+ delay retries for a given message.
2008
+
2000
2009
``poll_timeout `` (default: ``0.1 ``)
2001
2010
Wait for new message duration in seconds
2002
2011
@@ -2018,6 +2027,10 @@ The transport has a number of options:
2018
2027
``wait_time `` (default: ``20 ``)
2019
2028
`Long polling `_ duration in seconds
2020
2029
2030
+ .. versionadded :: 7.2
2031
+
2032
+ The ``keepalive `` option was introduced in Symfony 7.2.
2033
+
2021
2034
.. note ::
2022
2035
2023
2036
The ``wait_time `` parameter defines the maximum duration Amazon SQS should
@@ -2050,10 +2063,6 @@ The transport has a number of options:
2050
2063
FIFO queues don't support setting a delay per message, a value of ``delay: 0 ``
2051
2064
is required in the retry strategy settings.
2052
2065
2053
- .. versionadded :: 7.2
2054
-
2055
- Keepalive support, using the ``--keepalive `` option, was added in Symfony 7.2.
2056
-
2057
2066
Serializing Messages
2058
2067
~~~~~~~~~~~~~~~~~~~~
2059
2068
0 commit comments