Tagged Questions
2
votes
3answers
151 views
With MVC, do interactions with autonomous peripherals belong in the Model or the Controller?
Using MVC with an observer pattern, if a user action requires polling a device (such as a camera) for data, should the polling be done in the Controller and the result passed off the Model or should a ...