Command প্যাটার্ন একটি request কে object হিসেবে encapsulate করে — একটি action কে একটি standalone object এ পরিণত করে যাতে এর সমস্ত তথ্য থাকে। এটি queuing, logging, undo/redo, এবং requester কে executor থেকে decouple করতে সক্ষম করে।
Command প্যাটার্ন যা করে
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
