Command pattern એક request ને object તરીકે encapsulate કરે છે — એક action ને standalone object માં રૂપાંતરિત કરે છે જેમાં તેની તમામ માહિતી હોય છે। આ queuing, logging, undo/redo, અને requester ને executor માંથી decouple કરવાને સક્ષમ બનાવે છે.
Command pattern શું કરે છે
COMMAND → encapsulate an action/request as an OBJECT (with its data and an execute method):
→ a command object knows WHAT to do and has the info to do it
→ the invoker triggers commands without knowing their details
→ decouples the object that INVOKES from the object that PERFORMS the action
→ "turn an action into an object" → store, pass, queue, log, undo it
