Re: [elephant-devel] initialize-instance :after

2010-01-20 Thread Ian Eslick
But not, I believe, in the actual 0.9 release. 0.9.1 may have had it. On Jan 20, 2010, at 6:35 PM, Alex Mizrahi wrote: > IE> We introduced recreate-instance in 1.0 which does not call your > IE> initialize-instance when existing instances are pulled from the DB. > IE> You are not the first to

Re: [elephant-devel] initialize-instance :after

2010-01-20 Thread Alex Mizrahi
IE> We introduced recreate-instance in 1.0 which does not call your IE> initialize-instance when existing instances are pulled from the DB. IE> You are not the first to have this problem. ;) Under the new system, IE> you'll use initialize-instance which should have the expected behavior IE>

Re: [elephant-devel] initialize-instance :after

2010-01-10 Thread Ian Eslick
We introduced recreate-instance in 1.0 which does not call your initialize-instance when existing instances are pulled from the DB. You are not the first to have this problem. ;) Under the new system, you'll use initialize-instance which should have the expected behavior now of only acting a

[elephant-devel] initialize-instance :after

2010-01-10 Thread Frank Schorr
(still on 0.9) I defined an after method for initialize instance of a persistent class. The after method is called when a new persistent object is created, as desired. It appears that the method is also called when the persistent object is read from the store, which is not what I want. a) Is th