Tagged Questions
Data, Context, Interactions (DCI) DCI was invented by Professor Trygve Reenskaug to solve a specific problem in OO code; it's very hard to read OO code for a specific use-case since it is often spread across many different classes, and the control flow between the methods of these classes depend on which objects are instantiated to which variables. With DCI Reenskaug proposed a new way of coding for use-cases where each use-case is implemented as a
16
votes
3answers
4k views
DCI - Data, Context and Interaction (Successor to MVC?)
What is the best description of Data, Context and Interaction (DCI) to pitch it to an organization?
It's created by Trygve Reenskaug, the creator of the MVC-pattern.
Is it really the successor to ...
4
votes
3answers
736 views
examples of DCI architecture?
I've been trying to understand DCI architecture by reading lean software architecture. I feel like I need to see some more examples to crystalize my understanding of it, but I've only been able to ...
2
votes
1answer
154 views
DCI and Use Case Slices
In his book "Aspect-Oriented Software Development with Use Cases" Ivar Jacobson introduces"use case slices". It seems that DCI and use case slices are based on the same (or at least similar) idea.
...
2
votes
2answers
422 views
DCI (data, context, interaction) persistence example
All the examples of DCI I've seen seems to be based on the object as the ultimate holder of information, and the transaction boundaries are defined inside the methods.
I would like to see an example ...
2
votes
1answer
413 views
What are possible designs for the DCI architecture?
What are possibles designs for implementation of the DCI (data, contexts, interactions) architecture in different OOP languages? I thought of Policy based design (Andrei Alexandrescu) for C++, DI and ...
1
vote
3answers
50 views
Ruby precedence of methods in objects extended with multiple modules
Given the following:
class User; attr_accessor :roles; end
module RegisteredUser
def default_context
Submission
end
end
module Admin
def default_context
Review
end
end
current_user ...
1
vote
1answer
71 views
How to combine DDD(Domain-driven design) DCI to design a application
DDD is Domain-Driven Design , it is a methodology that include ubiquitous language, root entity , value object and aggregations..
DCI: Data, Context, Interactions is a programming paradigm invented ...
0
votes
1answer
75 views
DCI, trouble with concept of 'context' and what roles within know of each-other
I may just be missing a key concept here. I understand the 'dumb' data objects. I also understand that roles are stateless collections of methods applied to a dumb object when it takes on that role. I ...