62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
|
name: SyncTransport
|
||
|
class_comment: '# * Transport that immediately marks messages as received and dispatches
|
||
|
for handling.
|
||
|
|
||
|
# *
|
||
|
|
||
|
# * @author Ryan Weaver <ryan@symfonycasts.com>'
|
||
|
dependencies:
|
||
|
- name: Envelope
|
||
|
type: class
|
||
|
source: Symfony\Component\Messenger\Envelope
|
||
|
- name: InvalidArgumentException
|
||
|
type: class
|
||
|
source: Symfony\Component\Messenger\Exception\InvalidArgumentException
|
||
|
- name: MessageBusInterface
|
||
|
type: class
|
||
|
source: Symfony\Component\Messenger\MessageBusInterface
|
||
|
- name: ReceivedStamp
|
||
|
type: class
|
||
|
source: Symfony\Component\Messenger\Stamp\ReceivedStamp
|
||
|
- name: SentStamp
|
||
|
type: class
|
||
|
source: Symfony\Component\Messenger\Stamp\SentStamp
|
||
|
- name: TransportInterface
|
||
|
type: class
|
||
|
source: Symfony\Component\Messenger\Transport\TransportInterface
|
||
|
properties: []
|
||
|
methods:
|
||
|
- name: __construct
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: messageBus
|
||
|
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
|
||
|
- name: send
|
||
|
visibility: public
|
||
|
parameters:
|
||
|
- name: envelope
|
||
|
comment: null
|
||
|
traits:
|
||
|
- Symfony\Component\Messenger\Envelope
|
||
|
- Symfony\Component\Messenger\Exception\InvalidArgumentException
|
||
|
- Symfony\Component\Messenger\MessageBusInterface
|
||
|
- Symfony\Component\Messenger\Stamp\ReceivedStamp
|
||
|
- Symfony\Component\Messenger\Stamp\SentStamp
|
||
|
- Symfony\Component\Messenger\Transport\TransportInterface
|
||
|
interfaces:
|
||
|
- TransportInterface
|