49 lines
835 B
PHP
Executable File
49 lines
835 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\ChannelBundle\Event;
|
|
|
|
use Mautic\ChannelBundle\Entity\MessageQueue;
|
|
use Symfony\Contracts\EventDispatcher\Event;
|
|
|
|
class MessageQueueBatchProcessEvent extends Event
|
|
{
|
|
/**
|
|
* @param MessageQueue[] $messages
|
|
*/
|
|
public function __construct(
|
|
private array $messages,
|
|
private $channel,
|
|
private $channelId,
|
|
) {
|
|
}
|
|
|
|
public function checkContext($channel): bool
|
|
{
|
|
return $channel === $this->channel;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getMessages()
|
|
{
|
|
return $this->messages;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getChannel()
|
|
{
|
|
return $this->channel;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getChannelId()
|
|
{
|
|
return $this->channelId;
|
|
}
|
|
}
|