class GQTP::Backend::Thread::Request

Public Class Methods

new(thread) click to toggle source
# File lib/gqtp/backend/thread.rb, line 25
def initialize(thread)
  @thread = thread
end

Public Instance Methods

wait() click to toggle source
# File lib/gqtp/backend/thread.rb, line 29
def wait
  @thread.join
end