aboutsummaryrefslogtreecommitdiff
path: root/common/session/custom/session.txx
AgeCommit message (Collapse)AuthorFilesLines
2015-02-06Update copyrightBoris Kolpackov1-1/+1
2013-10-15Remove unused typedefBoris Kolpackov1-2/+0
2013-02-09Update copyright yearBoris Kolpackov1-1/+1
2013-01-20Add cache_ suffix to session cache functionsBoris Kolpackov1-10/+11
This way they won't conflict with other functions (e.g., delayed database operations) that may have the same names.
2013-01-18Add support for post-commit/rollback callbacksBoris Kolpackov1-3/+8
New test: common/transaction/callback.
2013-01-16Make session cache management functions static, add notificationsBoris Kolpackov1-27/+65
2013-01-16Implement two-phase session insertionBoris Kolpackov1-0/+118
On the first step an uninitialized object is inserted into the cache as before (this is necessary to handle recursive loading). The second step is to notify the session that the object has been initialized. On this second step the session can perform change tracking preparations, such as make a copy of the object or reset the modification flag. New test: common/session/custom (implements a custom session that uses copies to track changes).