transforms/Xtreams__MessagePackMarshaler.st
changeset 27 2cc5a8a3ca14
parent 10 3813193bdf4e
child 35 f4e4e88a477e
--- a/transforms/Xtreams__MessagePackMarshaler.st	Mon Nov 21 06:44:34 2011 +0000
+++ b/transforms/Xtreams__MessagePackMarshaler.st	Mon Nov 21 06:45:03 2011 +0000
@@ -5,8 +5,8 @@
 Object subclass:#MessagePackMarshaler
 	instanceVariableNames:'unmarshaling marshaling analysing'
 	classVariableNames:''
-	poolDictionaries:'Tools.Pragma'
-	category:'My Classes'
+	poolDictionaries:'XtreamsPool'
+	category:'Xtreams-Transforms'
 !
 
 MessagePackMarshaler comment:'MessagePackMarshaler defines the binary format of the MessagePack protocol ( http://wiki.msgpack.org/display/MSGPACK/Format+specification ), which is a binary JSON. It can marshal simple objects, but not whole classes, just like JSON. It is considered to be a very fast marshaler because of its lightweight protocol. It cannot handle circular references.