platform/api/symfony/Component/Messenger/Transport/Receiver/SingleMessageReceiver.yaml

42 lines
741 B
YAML
Raw Normal View History

2024-09-02 17:44:11 +00:00
name: SingleMessageReceiver
class_comment: '# * Receiver that decorates another, but receives only 1 specific
message.
# *
# * @author Ryan Weaver <ryan@symfonycasts.com>
# *
# * @internal'
dependencies:
- name: Envelope
type: class
source: Symfony\Component\Messenger\Envelope
properties: []
methods:
- name: __construct
visibility: public
parameters:
- name: receiver
- name: envelope
comment: null
- name: get
visibility: public
parameters: []
comment: null
- name: ack
visibility: public
parameters:
- name: envelope
comment: null
- name: reject
visibility: public
parameters:
- name: envelope
comment: null
traits:
- Symfony\Component\Messenger\Envelope
interfaces:
- ReceiverInterface