You might do some searches on Dolphin's binary packages; I tried them once and that was about it, but there might be some useful reading on them??
For your problem, my thoughts would be either a fileout or .mcz followed by SIXX for the data. Bill ________________________________________ From: [email protected] [[email protected]] On Behalf Of Mariano Martinez Peck [[email protected]] Sent: Thursday, February 24, 2011 5:25 AM To: [email protected] Subject: Re: [Pharo-project] serializing a class On Thu, Apr 1, 2010 at 11:05 PM, Schwab,Wilhelm K <[email protected]<mailto:[email protected]>> wrote: Stef, Dolphin's solution is to use proxies. Rather than serializing the class itself, one might prefer to serialize a proxy that knows enough to find the appropriate object once it "wakes up" in the new image. In the case of a class, it should be enough to know the name, so the proxy would have that one aspect and it would resolve itself by looking for it in the system dictionary. There is a little more to it, but that is the basic idea. ReferenceStream does the same, and te proxy is called DiskProxy. This may work sometimes, but others, it doesn't. For example, in my case, I need to REALLY serialize a class, becase I need to load it in another image where such class is not even present. cheers Mariano Bill -----Original Message----- From: [email protected]<mailto:[email protected]> [mailto:[email protected]<mailto:[email protected]>] On Behalf Of Stéphane Ducasse Sent: Thursday, April 01, 2010 3:03 PM To: [email protected]<mailto:[email protected]> Development Subject: [Pharo-project] serializing a class Hi I would like to do a little experiment. I need to save a class (not the instances) in a binary format and I was wondering if somebody got experience with that. Stef _______________________________________________ Pharo-project mailing list [email protected]<mailto:[email protected]> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project _______________________________________________ Pharo-project mailing list [email protected]<mailto:[email protected]> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
