MediaWiki Event Management System
Jump to navigation
Jump to search
A MediaWiki Event Management System is a event management system that manages event processing (for MediaWiki state changes and notifications).
- Context:
- It can (typically) detect page modification events through change monitoring.
- It can (typically) handle user action events via event listeners.
- It can (typically) process system state changes through event handlers.
- It can (often) maintain event queues for asynchronous processing.
- It can (often) implement event filtering for targeted handling.
- ...
- It can range from being a Simple Event Monitor to being an Advanced Event Processor, depending on its processing capability.
- ...
- Example(s):
- Event Types, such as:
- Page Events, such as:
- Edit Event for content changes.
- Move Event for page renaming.
- User Events, such as:
- Page Events, such as:
- ...
- Event Types, such as:
- Counter-Example(s):
- Polling System, which lacks event-driven architecture.
- Manual Monitor, which requires human oversight.
- See: Event-Driven Architecture, MediaWiki Hook System, Event Processing.