Add a 'started' hook for the Magic Folder Uploader.

Signed-off-by: Daira Hopwood <daira@jacaranda.org>
This commit is contained in:
Daira Hopwood 2015-09-03 15:49:34 +01:00
parent a3c4364d7b
commit a5a5c1da1d

View File

@ -95,7 +95,7 @@ class QueueMixin(HookMixin):
self._local_path = to_filepath(local_path_u)
self._db = db
self._name = name
self._hooks = {'processed': None}
self._hooks = {'processed': None, 'started': None}
if not self._local_path.exists():
raise AssertionError("The '[magic_folder] local.directory' parameter was %s "
@ -184,6 +184,7 @@ class Uploader(QueueMixin):
def start_monitoring(self):
d = self._notifier.startReading()
self._count('dirs_monitored')
d.addBoth(self._call_hook, 'started')
return d
def stop(self):