name: AmqpReceiver class_comment: '# * Symfony Messenger receiver to get messages from AMQP brokers using PHP''s AMQP extension. # * # * @author Samuel Roze ' dependencies: - name: Envelope type: class source: Symfony\Component\Messenger\Envelope - name: LogicException type: class source: Symfony\Component\Messenger\Exception\LogicException - name: MessageDecodingFailedException type: class source: Symfony\Component\Messenger\Exception\MessageDecodingFailedException - name: TransportException type: class source: Symfony\Component\Messenger\Exception\TransportException - name: MessageCountAwareInterface type: class source: Symfony\Component\Messenger\Transport\Receiver\MessageCountAwareInterface - name: QueueReceiverInterface type: class source: Symfony\Component\Messenger\Transport\Receiver\QueueReceiverInterface - 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: get visibility: public parameters: [] comment: null - name: getFromQueues visibility: public parameters: - name: queueNames comment: null - name: getEnvelope visibility: private parameters: - name: queueName comment: null - name: ack visibility: public parameters: - name: envelope comment: null - name: reject visibility: public parameters: - name: envelope comment: null - name: getMessageCount visibility: public parameters: [] comment: null - name: rejectAmqpEnvelope visibility: private parameters: - name: amqpEnvelope - name: queueName comment: null - name: findAmqpStamp visibility: private parameters: - name: envelope comment: null traits: - Symfony\Component\Messenger\Envelope - Symfony\Component\Messenger\Exception\LogicException - Symfony\Component\Messenger\Exception\MessageDecodingFailedException - Symfony\Component\Messenger\Exception\TransportException - Symfony\Component\Messenger\Transport\Receiver\MessageCountAwareInterface - Symfony\Component\Messenger\Transport\Receiver\QueueReceiverInterface - Symfony\Component\Messenger\Transport\Serialization\PhpSerializer - Symfony\Component\Messenger\Transport\Serialization\SerializerInterface interfaces: - QueueReceiverInterface