cimatosa / jobmanager

easy distributed computing based on the python class SyncManager for remote communication and python module multiprocessing for local parallelism
MIT License
6 stars 3 forks source link

Separate Loop, StatusBar, and Server-Client-Classes #2

Closed paulmueller closed 9 years ago

paulmueller commented 9 years ago

Hi Richard,

jobmanager.py contains many functionalities that in my opinion should be separated for the sake of not loosing sight of things.

If I wanted to write a wxPython extension-pendant to the status bar class, then I would need a starting point. A separate file with the loop class and a separate file with the statusbar classes would greatly simplify my quest.

Cheers, Paul

cimatosa commented 9 years ago

You are absolutely right, that's why I recently reorganized and restructured the loop/status stuff which is now also in separate file, namly pregress.py.

Richard