Not Available x Room: 4305
This talk explains the design approach we used to implement unlimited persistent undo. Our goal was to be able to undo power fail. The user should be able to undo back to the creation of a document, even if it was previously saved or copied, and redo back to the latest state. If the power failed, when the user ran the software again it should redo any changes made since the last save so the document is back in the latest state.
The design we eventually came up with is deceptively simple. As a bonus, it helped us figure out how to design the model layer so it is very stable.
The implementation and examples are in C# .NET but the design may be applicable to other languages and runtimes.