Command Pattern: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Design Patterns =Overview=")
 
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:


=Overview=
=Overview=
The Command pattern is a behavioral pattern that consists in encapsulating a request as an object, thereby letting you parameterize clients with different requests. The client does not necessarily need to know what exactly the request does or how is carried out, or who the target is, it only needs to know how to signal that the request has to be carried out.

Latest revision as of 15:40, 25 May 2018

Internal

Overview

The Command pattern is a behavioral pattern that consists in encapsulating a request as an object, thereby letting you parameterize clients with different requests. The client does not necessarily need to know what exactly the request does or how is carried out, or who the target is, it only needs to know how to signal that the request has to be carried out.