| 1 | <?php |
||
| 8 | class Producer implements ProducerInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var ConnectionInterface |
||
| 12 | */ |
||
| 13 | private $connection; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var ChannelInterface |
||
| 17 | */ |
||
| 18 | private $channel; |
||
| 19 | |||
| 20 | 2 | public function __construct(ConnectionInterface $connection, string $channelId = '') |
|
| 25 | |||
| 26 | 2 | public function publish(Publishable $message) |
|
| 30 | |||
| 31 | public function getChannel() : ChannelInterface |
||
| 35 | } |
||
| 36 |