Sha256: dd7efa12b169ec0ec51055f46109f794008ec36b48ebab54fb3e6d28c7455766

Contents?: true

Size: 209 Bytes

Versions: 5

Compression:

Stored size: 209 Bytes

Contents

# frozen_string_literal: true

require "trellodon/schedulers/base"

module Trellodon
  module Schedulers
    class Threaded < Base
      def post(&block)
        Thread.new(&block)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
trellodon-0.4.0 lib/trellodon/schedulers/threaded.rb
trellodon-0.3.0 lib/trellodon/schedulers/threaded.rb
trellodon-0.2.1 lib/trellodon/schedulers/threaded.rb
trellodon-0.2.0 lib/trellodon/schedulers/threaded.rb
trellodon-0.1.0 lib/trellodon/schedulers/threaded.rb