Sha256: cce85c78331cb9f26d786bc48b0309e5ccb9f387fb2b8bd9d7e86dbd659a68d7

Contents?: true

Size: 1.29 KB

Versions: 57

Compression:

Stored size: 1.29 KB

Contents

# frozen-string-literal: true

module Sequel
  extension 'async_thread_pool'

  module Plugins
    # The async_thread_pool plugin makes it slightly easier to use the async_thread_pool
    # Database extension with models.  It makes Model.async return an async dataset for the
    # model, and support async behavior for #destroy, #with_pk, and #with_pk! for model
    # datasets:
    #
    #   # Will load the artist with primary key 1 asynchronously
    #   artist = Artist.async.with_pk(1)
    #
    # You must load the async_thread_pool Database extension into the Database object the
    # model class uses in order for async behavior to work.
    #
    # Usage:
    #
    #   # Make all model subclass datasets support support async class methods and additional
    #   # async dataset methods
    #   Sequel::Model.plugin :async_thread_pool
    #
    #   # Make the Album class support async class method and additional async dataset methods
    #   Album.plugin :async_thread_pool
    module AsyncThreadPool
      module ClassMethods
        Plugins.def_dataset_methods(self, :async)
      end

      module DatasetMethods
        [:destroy, :with_pk, :with_pk!].each do |meth|
          ::Sequel::Database::AsyncThreadPool::DatasetMethods.define_async_method(self, meth)
        end
      end
    end
  end
end

Version data entries

57 entries across 54 versions & 2 rubygems

Version Path
sequel-5.88.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.87.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.86.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.85.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.84.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.83.1 lib/sequel/plugins/async_thread_pool.rb
sequel-5.83.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.82.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.81.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.80.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.79.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.78.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.77.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.76.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.75.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.74.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.73.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.72.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.71.0 lib/sequel/plugins/async_thread_pool.rb
sequel-5.70.0 lib/sequel/plugins/async_thread_pool.rb