Memento pattern
|
The memento pattern is a software design pattern that provides the ability to restore an object to its previous state (undo by rollback).
The memento pattern is used by two objects: the originator and a caretaker. The originator is some object that has an internal state. The caretaker is going to do something to the originator, but wants to be able to undo the change. The caretaker first asks the originator for a memento object. Then it does whatever operation (or sequence of operations) it was going to do. To rollback to the state before the operations, it returns the memento object to the originator. The memento object itself is an opaque object (one which the caretaker can or should not change). When using this pattern, care should be taken if the originator may change other objects or resources - the memento pattern operates on a single object.
Classic examples of the memento pattern include the seed of a pseudorandom number generator and the state in a finite state machine.
See also
External links
- Description (http://adapower.com/index.php?Command=Class&ClassID=Patterns&CID=271) by Matthew Heaney
- Description (http://home.earthlink.net/~huston2/dp/memento.html) by Vince Huston
- Description from the Pattern Digest (http://patterndigest.com/patterns/Memento.html)de:Memento (Entwurfsmuster)