[Head First Design Patterns] Command Pattern
17 Apr 2022Command Pattern
- all commands will implement the interface
Command
which includingexecute()
method - requester invokes
Command.execute()
without having any knowledge about detailed behavior inexecute
func
Design principles
- decoupling requester and receiver actions