rindow / rindow-event
Observer design pattern library
1.0.0
2020-03-31 11:19 UTC
Requires
- php: >=5.3.3
- rindow/rindow-stdlib: 1.*
Requires (Dev)
Suggests
- rindow/rindow-container: When using service locator
This package is auto-updated.
Last update: 2024-10-29 05:44:11 UTC
README
The event manager realizes "observer pattern" in software design pattern.
It is an important library used in the core architecture of the Rindow Framework's AOP.
It is also used as a pipeline for other MVC models.
The following four classes are implemented.
- Listener instance manager(Observer)
- Event Manager(Subject)
- Event proceeding(Recursive event notification as part of subject)
- Event(Notified event)