Ejemplo n.º 1
0
 def process_IN_MODIFY(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Modified'))
Ejemplo n.º 2
0
 def process_IN_MOVE_SELF(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Moved'))
Ejemplo n.º 3
0
 def process_IN_DELETE(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Deleted'))
Ejemplo n.º 4
0
 def process_IN_CLOSE_WRITE(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Wrote and closed'))
Ejemplo n.º 5
0
 def process_IN_CREATE(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Created'))
Ejemplo n.º 6
0
 def process_IN_ATTRIB(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Attributes modified'))
Ejemplo n.º 7
0
 def process_default(self, event: pyi.Event) -> None:
     config.sync_exec(self.process_event(event, 'Default event'))