aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/TaskProcessing/Events/AbstractTaskProcessingEvent.php
blob: 84dbb8915f83a1ff0fdff79685fc9dfa0c065fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCP\TaskProcessing\Events;

use OCP\EventDispatcher\Event;
use OCP\TaskProcessing\Task;

/**
 * @since 30.0.0
 */
abstract class AbstractTaskProcessingEvent extends Event {
	/**
	 * @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;
	}
}