>> serialize: anObject on: aStreamserialize: anObject on: aStream
| sws |
sws := SixxWriteStream on: aStream.
sws nextPut: anObject.
sws close.
>> materializeFrom: aStream
| srs objects |
srs := SixxReadStream on: aStream.
objects := srs contents.
srs close.
^ objects
Is that correct or I am doing it wrong? All I want to do is to serialize a graph into a stream.
The stream I am using is or this:
(FileDirectory default forceNewFileNamed: 'Bench')
or
(RWBinaryOrTextStream on: '')
I am not sure if I should be doing a #nextPut: or a #nextPutAll:. I mean, sometimes anObject is a collection and sometimes it is not. So, which one should I use?
Thanks
Mariano
--
Mariano
http://marianopeck.wordpress.com