Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions lib/public/Files/Storage/INotifyStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,6 @@ interface INotifyStorage {
public const NOTIFY_MODIFIED = 3;
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
*
Expand Down