2024-04-29 14:21:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-04-29 14:21:07 +00:00
|
|
|
*/
|
|
|
|
namespace OCP\TaskProcessing\Events;
|
|
|
|
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
use OCP\TaskProcessing\Task;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 30.0.0
|
|
|
|
*/
|
2024-05-03 09:08:01 +00:00
|
|
|
abstract class AbstractTaskProcessingEvent extends Event {
|
2024-04-29 14:21:07 +00:00
|
|
|
/**
|
|
|
|
* @since 30.0.0
|
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
private readonly Task $task,
|
|
|
|
) {
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Task
|
|
|
|
* @since 30.0.0
|
|
|
|
*/
|
|
|
|
public function getTask(): Task {
|
|
|
|
return $this->task;
|
|
|
|
}
|
|
|
|
}
|