Method: GnipApi::Apis::PowerTrack::Buffer#read!

Defined in:
lib/gnip_api/apis/power_track/buffer.rb

#read!Object


20
21
22
23
24
25
26
27
28
29
30
# File 'lib/gnip_api/apis/power_track/buffer.rb', line 20

def read!
  objects = @data.split(terminator)[0..-2]
  unless objects.empty?
    # Get the number of chars to read from buffer, counting
    # the size of each splited chunk plus the number of chunks by
    # terminator size, since it's still present in the buffer
    size = objects.map(&:size).reduce(:+) + objects.size * terminator.size
    consume!(size)
  end
  return objects
end