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.
114 115 116 |
# File 'lib/thrift/protocol/json_protocol.rb', line 114 def initialize @first = true end |
Instance Method Details
#read(reader) ⇒ Object
126 127 128 129 130 131 132 |
# File 'lib/thrift/protocol/json_protocol.rb', line 126 def read(reader) if (@first) @first = false else JsonProtocol::read_syntax_char(reader, @@kJSONElemSeparator) end end |
#write(trans) ⇒ Object
118 119 120 121 122 123 124 |
# File 'lib/thrift/protocol/json_protocol.rb', line 118 def write(trans) if (@first) @first = false else trans.write(@@kJSONElemSeparator) end end |