Architecture
Last updated
Was this helpful?
Last updated
Was this helpful?
N-Layers architecture divides the application into isolated layers, each of them only knows the one above or below it.
For example: presentation - business - data layers.
Similar to the N-Layer, it is a simple architecture for interactive applications.
Splits the project into a server which handles the application business and clients which communicate with it.
Event-driven architectures are designed around messages, called events, which are generated, transmitted and consumed in reaction to changes in the application.
It is used for example in UIs.