Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 475 Bytes

File metadata and controls

5 lines (3 loc) · 475 Bytes

Command Pattern

Command is a behavioral design pattern that turns a request into a stand-alone object that contains all information about the request. This transformation lets you parameterize methods with different requests, delay or queue a request’s execution, and support undoable operations. source

In this example Remote uses Command to communicate with Television.