Joril
Joril

Reputation: 20596

Slow pyinotify.ThreadedNotifier.stop()

I have a wxPython application that uses pyinotify (via ThreadedNotifier) to check when a certain file gets modified. When this happens, the application stops watching the file and does some stuff. Everything works fine, except that often the call to ThreadedNotifier.stop() takes a noticeable time, about 4 seconds... Other times, it exits immediately.
Anyone else experienced this? Is this expected?

(Xubuntu 9.04)

Upvotes: 0

Views: 475

Answers (1)

extraneon
extraneon

Reputation: 23980

Could it be that it is a polling mechanism with a timeout of about 4 seconds? And that the thread is only really stopped when it is entering the run() stage?

That might have something to do with the threading library.

You could test that by using a notifier with a different timeout.

Upvotes: 1

Related Questions