Sha256: b20e2fc6d2560c86d1f08447036cd2f5cd787d63d918d338e0478c69bf4c7246
Contents?: true
Size: 1.95 KB
Versions: 1
Compression:
Stored size: 1.95 KB
Contents
module QPush class << self def job(options) job = Job::ClientWrapper.new(options) job.queue end end module Job class << self def included(base) _register_job(base) end def _register_job(base) QPush.redis.with { |c| c.sadd(QPush.keys.jobs, base.name) } end end class Base attr_accessor :klass, :id, :priority, :created_at, :start_at, :cron, :retry_max, :total_success, :total_fail, :run_time, :namespace attr_reader :args, :failed def initialize(options = {}) options = defaults.merge(options) options.each { |key, value| send("#{key}=", value) } end def args=(args) @args = if args.is_a?(String) then JSON.parse(args) else args end rescue JSON::ParserError @args = nil end def failed=(failed) @failed = failed == 'true' || failed == true end def to_json { klass: @klass, id: @id, priority: @priority, created_at: @created_at, start_at: @start_at, cron: @cron, retry_max: @retry_max, total_fail: @total_fail, total_success: @total_success, failed: @failed, args: @args }.to_json end private def defaults { id: SecureRandom.urlsafe_base64, args: {}, priority: 3, created_at: Time.now.to_i, start_at: Time.now.to_i - 1, cron: '', retry_max: 10, total_fail: 0, total_success: 0, failed: false, namespace: QPush.config.namespace } end end class ClientWrapper < QPush::Job::Base def queue QPush.redis.with do |conn| conn.hincrby("qpush:v1:#{@namespace}:stats", 'queued', 1) conn.lpush("qpush:v1:#{@namespace}:queue", to_json) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
qpush-0.1.4 | lib/qpush/job.rb |