February 2000
Intermediate to advanced
352 pages
6h 31m
English
The Chain of Responsibility pattern allows a number of classes to attempt to handle a request, without any of them knowing about the capabilities of the other classes. It provides a loose coupling between these classes; the only common link is the request that is passed between them. The request is passed along until one of the classes can handle it.
One example of such a pattern is a Help system like the one shown in Figure 16.1. Here, every screen region of an application invites you to seek help, but in some window background areas, more generic help is the only suitable result.

Figure 16.1. A simple ...
Read now
Unlock full access