module Circuitry::Concerns::Async::ClassMethods

Public Instance Methods

async_strategies() click to toggle source
# File lib/circuitry/concerns/async.rb, line 17
def async_strategies
  [:fork, :thread, :batch]
end
default_async_strategy() click to toggle source
# File lib/circuitry/concerns/async.rb, line 21
def default_async_strategy
  raise NotImplementedError, "#{name} must implement class method `default_async_strategy`"
end