transforms/Xtreams__MessagePackMarshaler.st
changeset 97 2a7827f4dce2
parent 72 d16c7d84d4a8
child 111 44ac233b2f83
equal deleted inserted replaced
96:85e395d8e3d7 97:2a7827f4dce2
     3 "{ NameSpace: Xtreams }"
     3 "{ NameSpace: Xtreams }"
     4 
     4 
     5 Object subclass:#MessagePackMarshaler
     5 Object subclass:#MessagePackMarshaler
     6 	instanceVariableNames:'unmarshaling marshaling analysing'
     6 	instanceVariableNames:'unmarshaling marshaling analysing'
     7 	classVariableNames:''
     7 	classVariableNames:''
     8 	poolDictionaries:'XtreamsPool'
     8 	poolDictionaries:'Xtreams::XtreamsPool'
     9 	category:'Xtreams-Transforms'
     9 	category:'Xtreams-Transforms'
    10 !
    10 !
    11 
    11 
    12 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.
    12 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.
    13 
    13