design-patterns/behavioral/command/__init__.py
2020-10-01 12:57:52 +02:00

5 lines
247 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
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 requests execution, and support undoable operations.
"""