Decoupling of Request Handlers:?
- The Chain of Responsibility allows handlers to be decoupled from the client
code. The client doesn’t need to know which handler will process the request,
only that the request will eventually be processed by some handler in the
chain.