Skip to content

Commit 5491c8d

Browse files
committed
upate
1 parent 3507b6f commit 5491c8d

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

06_함수형_프로그래밍/Gwangyu-Kim.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,16 @@ for(var i= 0; i< evenIds.length; i++){
191191
}
192192
];
193193
```
194-
195-
194+
>advantage
195+
Simplicity – Allows designer to understand overall input/output behavior of a system in terms of individual filters.
196+
Maintenance and reuse
197+
Concurrent Execution –Each filter can be implemented as a separate task and be executed in parallel with other filters.
198+
199+
>disAdvantage
200+
Interactive transformations are difficult – Filters being independent entities designer has to think of each filter as providing a complete transformation of input data to output data.
201+
No filter cooperation.
202+
Performance – may force a lowest common denominator on data transmission
203+
[https://www.coursehero.com/file/p3ercbp/Pipe-and-Filter-Style-Advantages-and-Disadvantages-Advantages-Simplicity-Allows/]
196204
-------------------------
197205
198206
## 3.[어큐물레이터]

0 commit comments

Comments
 (0)