diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-03-05 17:27:10 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-03-11 15:07:23 +0100 |
commit | e1f2a6df94af29864778a3ac286887ba51f19b04 (patch) | |
tree | 7f4efe6ded5eefdc37d992209969ab7a9eac1612 /lib/private/files/cache | |
parent | 7adda887865d43ea66e4854826cbb64f942af42c (diff) | |
download | nextcloud-server-e1f2a6df94af29864778a3ac286887ba51f19b04.tar.gz nextcloud-server-e1f2a6df94af29864778a3ac286887ba51f19b04.zip |
Allow setting the watcher policy as mount option
Diffstat (limited to 'lib/private/files/cache')
-rw-r--r-- | lib/private/files/cache/watcher.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/private/files/cache/watcher.php b/lib/private/files/cache/watcher.php index f4572895b09..22c3fb202c3 100644 --- a/lib/private/files/cache/watcher.php +++ b/lib/private/files/cache/watcher.php @@ -52,6 +52,13 @@ class Watcher { } /** + * @return int either \OC\Files\Cache\Watcher::CHECK_NEVER, \OC\Files\Cache\Watcher::CHECK_ONCE, \OC\Files\Cache\Watcher::CHECK_ALWAYS + */ + public function getPolicy() { + return $this->watchPolicy; + } + + /** * check $path for updates * * @param string $path |