So say we have an app (server) that somehow attaches to itself plugins (services) in form of .dll or .so libraries. Is there any nice short name for such server behaviour model?
Tell me more
×
Programmers Stack Exchange is a question and answer site for
professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
|
|
Your architecture can be probably be genericized as a plugin-based architecture, where the server gets functionality from loading libraries. Your model also fits the idea of service-oriented architecture, where a software system contains different services that operate together. |
|||
|
|