Skip to main content

How To Use Domain Events To Build Loosely Coupled Systems

About 6 minC#DotNetArticle(s)blogmilanjovanovic.techcsc#csharpdotnet

How To Use Domain Events To Build Loosely Coupled Systems 관련

C# > Article(s)

Article(s)

How To Use Domain Events To Build Loosely Coupled Systems
In software engineering, coupling means how much different parts of a software system depend on each other. If they are tightly coupled, changes to one part can affect many others. But if they are loosely coupled, changes to one part won't cause big problems in the rest of the system. Domain events are a Domain-Driven Design (DDD) tactical pattern that we can use to build loosely coupled systems. You can raise a domain event from the domain, which represents a fact that has occurred. And other components in the system can subscribe subscribe to this event, and handle it accordingly.

이찬희 (MarkiiimarK)
Never Stop Learning.