示例#1
0
    def __init__(self, eventTypes, pathMode, pathString, whitelist, blacklist, timeout, blockSize,
                    ignoreSysFiles, ignoreDirEvents, proxy, monitorId):
 
        """
            Initialise Monitor.
                                 
        """
        AbstractMonitor.__init__(self, eventTypes, pathMode, pathString, whitelist, blacklist, 
                            ignoreSysFiles, ignoreDirEvents, proxy, monitorId)
        
        self.notifier = NotificationScheduler(self.proxy, self.monitorId, timeout, blockSize)
        self.notifier.start()