Split impl_zmq.py to files according to classes
Now in zmq driver we have a lot of code (related to different parts like client, server, broker) placed in a single module. It would be very appreciated to decompose this module to more files according to main classes. Related helper classes or class hierarchies may stay in the same module with main class. By now main classes are ZmqClient(client), ZmqProxy (broker), ZmqConnection (server side). Such common classes for all parts like ZmqBaseReactor and ZmqSocket are to go to their own modules or to common.py module in zmq_driver package(folder). Matchmakers also to be moved to the package.
Finally we are going to come up with something like this:
_drivers (package)
+-- impl_rabbit.py
+-- impl_zmq.py <- leave only ZmqDriver class here
+-- zmq_driver (package)
| +--- matchmaker.py
| +--- matchmaker_ring.py
| +--- matchmaker_redis.py
| +--- matchmaker_.py
...
| +--- client.py
| +--- reactor.py
| +--- proxy.py
| +--- topic.py
...
Blueprint information
- Status:
- Not started
- Approver:
- None
- Priority:
- Undefined
- Drafter:
- Oleksii Zamiatin
- Direction:
- Needs approval
- Assignee:
- None
- Definition:
- New
- Series goal:
- None
- Implementation:
- Unknown
- Milestone target:
- None
- Started by
- Completed by