What are possible designs for the DCI architecture?

Posted by Gabriel Šcerbák on Stack Overflow See other posts from Stack Overflow or by Gabriel Šcerbák
Published on 2010-04-05T13:14:16Z Indexed on 2010/04/23 17:03 UTC
Read the original article Hit count: 276

Filed under:
|
|
|
|

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 AOP for Java. However, I also thought about using State design pattern for representing roles and some sort of Template method for the interactions... What are the other possibilities?

© Stack Overflow or respective owner

Related posts about dci

Related posts about oop