From 3616c531824018bf5a642a64b26dba26eca9f9c3 Mon Sep 17 00:00:00 2001 From: Daulet Abishev <88084186+Dauka03@users.noreply.github.com> Date: Fri, 7 Oct 2022 19:17:31 +0600 Subject: [PATCH] Added content angular-obsevable-pattern (#2244) * Added content angular-obsevable-pattern * Update content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md Co-authored-by: Kamran Ahmed --- .../content/101-rxjs-basics/100-observable-pattern.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md b/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md index ea3b5d9fb..ae5d5f440 100644 --- a/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md +++ b/content/roadmaps/104-angular/content/101-rxjs-basics/100-observable-pattern.md @@ -1 +1,8 @@ -# Observable pattern \ No newline at end of file +# Observable Pattern + +The observer pattern is a software design pattern in which an object, named the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. + +Angular uses the Observer pattern which simply means — Observable objects are registered, and other objects observe (in Angular using the subscribe method) them and take action when the observable object is acted on in some way. + +Free Content +Angular and Observable \ No newline at end of file