Class: FCGI::Stream

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/handler/fastcgi.rb

Instance Method Summary collapse

Instance Method Details

#_rack_read_without_bufferObject



7
# File 'lib/rack/handler/fastcgi.rb', line 7

alias _rack_read_without_buffer read

#read(n, buffer = nil) ⇒ Object



9
10
11
12
13
# File 'lib/rack/handler/fastcgi.rb', line 9

def read(n, buffer=nil)
  buf = _rack_read_without_buffer n
  buffer.replace(buf.to_s)  if buffer
  buf
end