Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 441 Bytes

File metadata and controls

12 lines (6 loc) · 441 Bytes

EventBus-Python

A synchronous event framework,Use ZMQ's XSUB/XPUB

This project is an application framework for event synchronization.

Focus on uncoupling the code and make it easy to extend the program.

Use ZMQ's XSUB/XPUB inproc as an event bus,Each of the classes that inherit from EventTarget can publish and subscribe to events.

The publisher sends the event to the bus, which then informs all subscribers to process the event