For the performance monitor, I implemented MVC in Java and decided to separate my model into separate classes, now I am torn between sorting its attributes and functions in Client , Server and Connection Model classes or Benchmark , Logging and Specs Model classes.
Former models will correspond to real life patterns as “objects,” since they are separate objects that the application will control. Thanks to the way MVC works with the observer, the reference function from my controller will trigger updates in all my models.
The latter will solve this widespread update, making the Models more functional (requirements), thus only updating the models that need to be updated, causing only the view-updates that need to be changed. I think this approach will reduce my reuse model.
Cakes source share