mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
* doc: create documentation * chore: put package in the right place * doc: edit general doc * add code example
5 lines
247 B
Python
5 lines
247 B
Python
"""
|
||
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.
|
||
"""
|