diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-10-29 08:58:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 08:58:15 +0100 |
commit | b9de133e16398ec002c10675178644c62d1ef4b9 (patch) | |
tree | 4a717d44babf592f07432236d57b126935b0bd2c /lib/public | |
parent | 1d8b954a22b197dda134e77d9bd832e6ee7be80b (diff) | |
parent | 32e4a61cac2294ecc9eb9f73323b8dd51c55c514 (diff) | |
download | nextcloud-server-b9de133e16398ec002c10675178644c62d1ef4b9.tar.gz nextcloud-server-b9de133e16398ec002c10675178644c62d1ef4b9.zip |
Merge pull request #23771 from nextcloud/techdebt/noid/remove-deprecated-inotifystorage-listen
Remove deprecated INotifyStorage::listen
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Files/Storage/INotifyStorage.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/public/Files/Storage/INotifyStorage.php b/lib/public/Files/Storage/INotifyStorage.php index 57efd6dc4f4..35dc828dfdf 100644 --- a/lib/public/Files/Storage/INotifyStorage.php +++ b/lib/public/Files/Storage/INotifyStorage.php @@ -38,24 +38,6 @@ interface INotifyStorage { public const NOTIFY_RENAMED = 4; /** - * Start listening for update notifications - * - * The provided callback will be called for every incoming notification with the following parameters - * - int $type the type of update, one of the INotifyStorage::NOTIFY_* constants - * - string $path the path of the update - * - string $renameTarget the target of the rename operation, only provided for rename updates - * - * Note that this call is blocking and will not exit on it's own, to stop listening for notifications return `false` from the callback - * - * @param string $path - * @param callable $callback - * - * @since 9.1.0 - * @deprecated 12.0.0 use INotifyStorage::notify()->listen() instead - */ - public function listen($path, callable $callback); - - /** * Start the notification handler for this storage * * @param $path |