Module: HoopAgent

Extended by:
FFI::Library
Defined in:
lib/hoopagent.rb

Class Method Summary collapse

Class Method Details

.startObject



20
21
22
23
24
25
26
27
# File 'lib/hoopagent.rb', line 20

def self.start
  # avoid to block the main thread
  if File.exist?(@lib_path)
    Thread.new do
      self.__start_in_background()
    end
  end
end