Class: Thrift::JSONContext

Inherits:
Object
  • Object
show all
Defined in:
lib/thrift/protocol/json_protocol.rb

Overview

Class to serve as base JSON context and as base class for other context implementations

Direct Known Subclasses

JSONListContext, JSONPairContext

Constant Summary collapse

@@kJSONElemSeparator =
','

Instance Method Summary collapse

Instance Method Details

#escapeNumObject

Return true if numbers need to be escaped as strings in this context. Default behavior is to return false.



71
72
73
# File 'lib/thrift/protocol/json_protocol.rb', line 71

def escapeNum
  return false
end

#read(reader) ⇒ Object

Read context data from the trans. Default is to do nothing.



64
65
# File 'lib/thrift/protocol/json_protocol.rb', line 64

def read(reader)
end

#write(trans) ⇒ Object

Write context data to the trans. Default is to do nothing.



58
59
# File 'lib/thrift/protocol/json_protocol.rb', line 58

def write(trans)
end