Trees | Index | Help |
|
---|
Module pyinotify :: Class Notifier |
|
object
--+
|
Notifier
ThreadedNotifier
Method Summary | |
---|---|
Initialization. | |
bool |
Check for new events available to read, blocks up to timeout milliseconds. |
Routine for processing events from queue by calling their associated proccessing function (instance of ProcessEvent). | |
Read events from device, build _RawEvents, and enqueue them. | |
Close the inotify's instance (close its file descriptor). | |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Method Details |
---|
__init__(self,
watch_manager,
default_proc_fun=<pyinotify.ProcessEvent object at 0x4026d12c>)
Initialization.
|
check_events(self, timeout=4000)Check for new events available to read, blocks up to timeout milliseconds.
|
process_events(self)Routine for processing events from queue by calling their associated proccessing function (instance of ProcessEvent). It also do internal processings, to keep the system updated. |
read_events(self)Read events from device, build _RawEvents, and enqueue them. |
stop(self)Close the inotify's instance (close its file descriptor). It destroys all existing watches, pending events,... |
Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Feb 17 02:40:18 2007 | http://epydoc.sf.net |