Chain of Responsibility
2022. 2. 28. 11:32ㆍSoftware Architecture/Software design
- 목차
반응형
Chain of Responsibility
어떤 동작을 처리할 때 (위 그림의 경우 handle), 이를 내가 처리할 수 없다면(topic이 나랑 맞지 않다면) 이 요청을 나의 successor (처음 나를 생성할 때 주입해 준 successor)가 처리하도록 하는 pattern.
즉, 처리를 다음 successor에 넘기는 패턴
반응형
'Software Architecture > Software design' 카테고리의 다른 글
Composite pattern (컴포지트 패턴) (0) | 2022.02.28 |
---|---|
Command pattern (커맨드 패턴) (0) | 2022.02.28 |
Builder pattern (빌더 패턴) (0) | 2022.02.28 |
Bridge pattern (브릿지 패턴) (0) | 2022.02.28 |
Adapter pattern(어뎁터 패턴) (0) | 2022.02.28 |