No automatic way as near as I can tell.
However, you could override the serialization / externalization method
in the class that is the root of your complex data structure, and as
part of it, implement the observer pattern. Then you simply hook up
one or more observers to all root objects on creation (for simplicity)
and in the observer, use some sort of a delay before triggering the
change logic.
VisionSet - 02 Jan 2006 22:42 GMT
> No automatic way as near as I can tell.
>
[quoted text clipped - 4 lines]
> and in the observer, use some sort of a delay before triggering the
> change logic.
Good idea, I may well do that.
I'll have to check that the order of serialisation runs children first, root
last though.
--
Mike W