Methods
N
R
W
Attributes
[R] buf
Class Public methods
new(str='')
# File sample/drb/http0.rb, line 8
def initialize(str='')
  @buf = str
end
Instance Public methods
read(n)
# File sample/drb/http0.rb, line 13
def read(n)
  begin
    return @buf[0,n]
  ensure
    @buf[0,n] = ''
  end
end
write(s)
# File sample/drb/http0.rb, line 21
def write(s)
  @buf.concat s
end