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
Esempio n. 1
0
 public JSONPairContext(JSONSerializer proto)
     : base(proto)
 {
 }
Esempio n. 2
0
 public JSONBaseContext(JSONSerializer proto)
 {
     this.proto = proto;
 }
Esempio n. 3
0
 public JSONListContext(JSONSerializer serializer)
     : base(serializer)
 {
 }
Esempio n. 4
0
 public LookaheadReader(JSONSerializer proto)
 {
     this.proto = proto;
 }