class Groonga::Client::Protocol::HTTP::Thread

Public Instance Methods

send(command) click to toggle source
# File lib/groonga/client/protocol/http/thread.rb, line 37
def send(command)
  thread = ::Thread.new do
    super
  end
  Request.new(thread)
end