Method: Grocer::Connection#read

Defined in:
lib/grocer/connection.rb

#read(size = nil, buf = nil) ⇒ Object



16
17
18
19
20
# File 'lib/grocer/connection.rb', line 16

def read(size = nil, buf = nil)
  with_connection do
    ssl.read(size, buf)
  end
end