Files
Phraseanet/lib/Alchemy/Phrasea/WorkerManager/Event/SubdefinitionCreationFailureEvent.php

45 lines
1004 B
PHP

<?php
namespace Alchemy\Phrasea\WorkerManager\Event;
use Alchemy\Phrasea\Core\Event\Record\RecordEvent;
use Alchemy\Phrasea\Model\RecordInterface;
class SubdefinitionCreationFailureEvent extends RecordEvent
{
private $subdefName;
private $workerMessage;
private $count;
private $workerJobId;
public function __construct(RecordInterface $record, $subdefName, $workerMessage = '', $count = 2, $workerJobId = 0)
{
parent::__construct($record);
$this->subdefName = $subdefName;
$this->workerMessage = $workerMessage;
$this->count = $count;
$this->workerJobId = $workerJobId;
}
public function getSubdefName()
{
return $this->subdefName;
}
public function getWorkerMessage()
{
return $this->workerMessage;
}
public function getCount()
{
return $this->count;
}
public function getWorkerJobId()
{
return $this->workerJobId;
}
}