# File lib/iproto/connection_api.rb, line 7 def next_request_id @next_request_id = ((@next_request_id ||= 0) + 1) & 0x7fffffff end
# File lib/iproto/connection_api.rb, line 16 def pack_request(request_type, request_id, body) data = ::BinUtils.append_int32_le!(nil, request_type, body.bytesize, request_id) ::BinUtils.append_string!(data, body) end
# File lib/iproto/connection_api.rb, line 11 def send_request(request_id, data) # for override end
[Validate]
Generated with the Darkfish Rdoc Generator 2.