Class: LinearReader

Inherits:
Object
  • Object
show all
Defined in:
lib/com/microsoft/json-parser.rb

Overview

Interface for a class that reads strings of arbitrary length from the end of a container

Direct Known Subclasses

BlobReader

Instance Method Summary collapse

Instance Method Details

#readObject

returns [content, are_more_bytes_available] content is a string are_more_bytes_available is a boolean stating if the container has more bytes to read



10
11
12
# File 'lib/com/microsoft/json-parser.rb', line 10

def read()
    raise 'not implemented'
end