class Concurrent::DaemonThreadFactory

def newThread(runnable)

def newThread(runnable)
  thread = @java_thread_factory.newThread(runnable)
  thread.setDaemon(@daemonize)
  return thread
end