JSON protocol implementation for thrift. This is a full-featured protocol supporting Write and Read. Please see the C++ class header for a detailed description of the protocol's wire format. Adapted from the Java version.
Inheritance: Serializer
Example #1
0
 public JSONPairContext(JSONSerializer proto)
     : base(proto)
 {
 }
Example #2
0
 public JSONBaseContext(JSONSerializer proto)
 {
     this.proto = proto;
 }
Example #3
0
 public JSONListContext(JSONSerializer serializer)
     : base(serializer)
 {
 }
Example #4
0
 public LookaheadReader(JSONSerializer proto)
 {
     this.proto = proto;
 }