Files
Phraseanet/lib/Alchemy/Phrasea/WorkerManager/Event/WorkerEvents.php
2020-07-28 11:10:38 +03:00

23 lines
811 B
PHP

<?php
namespace Alchemy\Phrasea\WorkerManager\Event;
final class WorkerEvents
{
const ASSETS_CREATE = 'assets.create';
const ASSETS_CREATION_FAILURE = 'assets.create_failure';
const ASSETS_CREATION_RECORD_FAILURE = 'assets.creation_record_failure';
const STORY_CREATE_COVER = 'story.create_cover';
const POPULATE_INDEX = 'populate.index';
const POPULATE_INDEX_FAILURE = "populate.index_failure";
const SUBDEFINITION_WRITE_META = 'subdefinition.write_meta';
const SUBDEFINITION_CREATION_FAILURE = 'subdefinition.creation_failure';
const EXPORT_MAIL_FAILURE = 'export.worker_mail_failure';
const WEBHOOK_DELIVER_FAILURE = 'webhook.deliver_failure';
}