Sha256: 563d8d07de073d7606b8d6b0da6e3c9709a6b7fd66bb68f7fd1fbc93cb174deb

Contents?: true

Size: 940 Bytes

Versions: 4

Compression:

Stored size: 940 Bytes

Contents

require 'forwardable'
require 'securerandom'
require 'redis'
require 'ost'
require 'class_config'
require 'transparent_proxy'
require 'logger'

Dir.glob(File.expand_path('asynchronic/**/*.rb', File.dirname(__FILE__))).sort.each { |f| require f }

module Asynchronic

  extend ClassConfig

  attr_config :default_queue, :asynchronic
  attr_config :queue_engine, QueueEngine::InMemory.new
  attr_config :data_store, DataStore::InMemory.new
  attr_config :logger, Logger.new($stdout)

  RETRY_TIMEOUT = 30
  
  def self.environment
    Environment.new queue_engine, data_store
  end

  def self.[](pid)
    environment.load_process pid
  end

  def self.processes
    environment.processes
  end

  def self.retry_execution(a_class, message)
    begin
      result = yield
    rescue Exception => ex
      logger.error(a_class) { "Retrying #{message}. ERROR: #{ex.message}" }
      sleep RETRY_TIMEOUT
      retry
    end
    result
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
asynchronic-1.4.0 lib/asynchronic.rb
asynchronic-1.3.1 lib/asynchronic.rb
asynchronic-1.3.0 lib/asynchronic.rb
asynchronic-1.2.2 lib/asynchronic.rb