DCI - Data, Context and Interaction (Successor to MVC?) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:21:05Z http://stackoverflow.com/feeds/question/378629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378629/dci-data-context-and-interaction-successor-to-mvc 1 DCI - Data, Context and Interaction (Successor to MVC?) Seb Nilsson 2008-12-18T17:48:26Z 2009-03-21T17:01:58Z <p>What is the best description of <a href="http://www.gertrudandcope.com-a.googlepages.com/thedciarchitecture" rel="nofollow">Data, Context and Interaction (DCI)</a> to pitch it to an organization?</p> <p>There is no <a href="http://en.wikipedia.org/wiki/Data,_Context_and_Interaction" rel="nofollow">Wikipedia-article</a> up on the subject yet.</p> <p>It's created by <a href="http://folk.uio.no/trygver/" rel="nofollow">Trygve Reenskaug</a>, the creator of the <a href="http://en.wikipedia.org/wiki/Model-view-controller" rel="nofollow">MVC-pattern</a>.</p> <p>Is it really the successor to MVC or just another pattern? And what are its pros and cons?</p> http://stackoverflow.com/questions/378629/dci-data-context-and-interaction-successor-to-mvc/669592#669592 1 Answer by Tim for DCI - Data, Context and Interaction (Successor to MVC?) Tim 2009-03-21T17:01:58Z 2009-03-21T17:01:58Z <p>The impression I got is that it's not a <em>successor</em> to MVC so much as a <em>complement</em>, for example figure 5 in <a href="http://www.artima.com/articles/dci%5Fvision.html" rel="nofollow">the artima article on DCI</a> has both. I think it's supposed to help make the distinction between model and controller more sane, or maybe between different part of the controller or different parts of the model.</p> <p>The basic idea seems to be to split logic for particular actions our of your data classes and move it to traits/mixins/whatever, one per (user) action. You'll have many small pieces of code, instead of a few large pieces. Also, it sounds like adding new mixins is supposed to be "better" than adding functionality to your base classes. The code for individual actions will probably (I think?) be more spread out, but code for different actions should be more clearly and obviously separated.</p>