inotify
Platypush documentation
inotify
- class platypush.message.event.inotify.InotifyAccessEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a monitored resource is accessed.
- class platypush.message.event.inotify.InotifyCloseEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a monitored resource is closed.
- class platypush.message.event.inotify.InotifyCreateEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a monitored resource is created.
- class platypush.message.event.inotify.InotifyDeleteEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a monitored resource is deleted.
- class platypush.message.event.inotify.InotifyEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
Event
Generic super-class for inotify events.
- class platypush.message.event.inotify.InotifyModifyEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a monitored resource is modified.
- class platypush.message.event.inotify.InotifyMovedEvent(path: str, old: Optional[str] = None, new: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a resource in a monitored path is moved.
- class platypush.message.event.inotify.InotifyOpenEvent(path: str, resource: Optional[str] = None, resource_type: Optional[str] = None, *args, **kwargs)[source]
Bases:
InotifyEvent
Event triggered when a monitored resource is opened.