# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 41 def close; end
# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 61 def flush; end
# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 39 def open; end
# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 37 def open?; end
# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 43 def read(sz) raise NotImplementedError end
# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 47 def read_all(size) buf = '' while (buf.length < size) chunk = read(size - buf.length) buf << chunk end buf end
# File usr/lib/ruby/vendor_ruby/thrift/transport/base_transport.rb, line 58 def write(buf); end