@@ -142,21 +142,26 @@ through the transport layer, use the ``SerializerStamp`` stamp::
142
142
]))
143
143
);
144
144
145
- At the moment, the Symfony Messenger has the following built-in envelope stamps :
145
+ Here are some important envelope stamps that are shipped with the Symfony Messenger :
146
146
147
- #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ SerializerStamp `,
148
- to configure the serialization groups used by the transport.
149
- #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ ValidationStamp `,
150
- to configure the validation groups used when the validation middleware is enabled.
147
+ #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ DelayStamp `,
148
+ to delay handling of an asynchronous message.
149
+ #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ DispatchAfterCurrentBusStamp `,
150
+ to make the message be handled after the current bus has executed. Read more
151
+ at :doc: `/messenger/dispatch_after_current_bus `.
152
+ #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ HandledStamp `,
153
+ a stamp that marks the message as handled by a specific handler.
154
+ Allows accessing the handler returned value and the handler name.
151
155
#. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ ReceivedStamp `,
152
156
an internal stamp that marks the message as received from a transport.
153
157
#. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ SentStamp `,
154
158
a stamp that marks the message as sent by a specific sender.
155
159
Allows accessing the sender FQCN and the alias if available from the
156
160
:class: `Symfony\\ Component\\ Messenger\\ Transport\\ Sender\\ SendersLocator `.
157
- #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ HandledStamp `,
158
- a stamp that marks the message as handled by a specific handler.
159
- Allows accessing the handler returned value and the handler name.
161
+ #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ SerializerStamp `,
162
+ to configure the serialization groups used by the transport.
163
+ #. :class: `Symfony\\ Component\\ Messenger\\ Stamp\\ ValidationStamp `,
164
+ to configure the validation groups used when the validation middleware is enabled.
160
165
161
166
Instead of dealing directly with the messages in the middleware you receive the envelope.
162
167
Hence you can inspect the envelope content and its stamps, or add any::
0 commit comments