api/symfony/Component/Messenger/Bridge/Amqp/Transport/AmqpSender.yaml

54 lines
1.6 KiB
YAML
Raw Normal View History

2024-09-26 09:03:21 +00:00
name: AmqpSender
class_comment: '# * Symfony Messenger sender to send messages to AMQP brokers using
PHP''s AMQP extension.
# *
# * @author Samuel Roze <samuel.roze@gmail.com>'
dependencies:
- name: Envelope
type: class
source: Symfony\Component\Messenger\Envelope
- name: TransportException
type: class
source: Symfony\Component\Messenger\Exception\TransportException
- name: DelayStamp
type: class
source: Symfony\Component\Messenger\Stamp\DelayStamp
- name: RedeliveryStamp
type: class
source: Symfony\Component\Messenger\Stamp\RedeliveryStamp
- name: SenderInterface
type: class
source: Symfony\Component\Messenger\Transport\Sender\SenderInterface
- name: PhpSerializer
type: class
source: Symfony\Component\Messenger\Transport\Serialization\PhpSerializer
- name: SerializerInterface
type: class
source: Symfony\Component\Messenger\Transport\Serialization\SerializerInterface
properties: []
methods:
- name: __construct
visibility: public
parameters:
- name: connection
- name: serializer
default: 'null'
comment: null
- name: send
visibility: public
parameters:
- name: envelope
comment: null
traits:
- Symfony\Component\Messenger\Envelope
- Symfony\Component\Messenger\Exception\TransportException
- Symfony\Component\Messenger\Stamp\DelayStamp
- Symfony\Component\Messenger\Stamp\RedeliveryStamp
- Symfony\Component\Messenger\Transport\Sender\SenderInterface
- Symfony\Component\Messenger\Transport\Serialization\PhpSerializer
- Symfony\Component\Messenger\Transport\Serialization\SerializerInterface
interfaces:
- SenderInterface