blob: be0306e3188706925c63983cedf26a24398e0665 (
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
35
36
37
38
39
40
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Files\Lock;
use OCP\PreConditionNotMetException;
/**
* @since 24.0.0
*/
interface ILockProvider {
/**
* @throws PreConditionNotMetException
* @throws NoLockProviderException
* @psalm-return list<ILock>
* @since 24.0.0
*/
public function getLocks(int $fileId): array;
/**
* @throws PreConditionNotMetException
* @throws OwnerLockedException
* @throws NoLockProviderException
* @since 24.0.0
*/
public function lock(LockContext $lockInfo): ILock;
/**
* @throws PreConditionNotMetException
* @throws NoLockProviderException
* @since 24.0.0
*/
public function unlock(LockContext $lockInfo): void;
}
|