Sha256: 5a37632c831139f5cd0f3cee62ecc18f3f853499ff472b02175a4f40a9b137ce

Contents?: true

Size: 172 Bytes

Versions: 6

Compression:

Stored size: 172 Bytes

Contents

module Mailbox
  class DaemonThreadFactory
    def newThread(r)
      thread = java.lang.Thread.new r;
      thread.set_daemon true;
      return thread;
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mailbox-0.2.7 lib/daemon_thread_factory.rb
mailbox-0.2.6 lib/daemon_thread_factory.rb
mailbox-0.2.5 lib/daemon_thread_factory.rb
mailbox-0.2.4 lib/daemon_thread_factory.rb
mailbox-0.2.3 lib/daemon_thread_factory.rb
mailbox-0.2.2 lib/daemon_thread_factory.rb