Class: Thrift::JSONListContext
- Inherits:
-
JSONContext
- Object
- JSONContext
- Thrift::JSONListContext
- Defined in:
- lib/thrift/protocol/json_protocol.rb
Overview
Context class for lists
Instance Method Summary collapse
-
#initialize ⇒ JSONListContext
constructor
A new instance of JSONListContext.
- #read(reader) ⇒ Object
- #write(trans) ⇒ Object
Methods inherited from JSONContext
Constructor Details
#initialize ⇒ JSONListContext
Returns a new instance of JSONListContext.
116 117 118 |
# File 'lib/thrift/protocol/json_protocol.rb', line 116 def initialize @first = true end |
Instance Method Details
#read(reader) ⇒ Object
128 129 130 131 132 133 134 |
# File 'lib/thrift/protocol/json_protocol.rb', line 128 def read(reader) if (@first) @first = false else JsonProtocol::read_syntax_char(reader, @@kJSONElemSeparator) end end |
#write(trans) ⇒ Object
120 121 122 123 124 125 126 |
# File 'lib/thrift/protocol/json_protocol.rb', line 120 def write(trans) if (@first) @first = false else trans.write(@@kJSONElemSeparator) end end |