Sha256: c24bc2a8cd36d32a38b5bcfd13bc87434922358517896a5f1f13cc4ecbe553a0

Contents?: true

Size: 1.57 KB

Versions: 1

Compression:

Stored size: 1.57 KB

Contents

require_relative './tradesman'
module WorkerRoulette
  class ATradesman < Tradesman
    attr_reader :timer

    def wait_for_work_orders(on_subscribe_callback = nil, &on_message_callback)
      @redis_pubsub ||= WorkerRoulette.new_redis_pubsub #cannot use connection pool bc redis expects each obj to own its own pubsub connection for the life of the subscription
      @redis_pubsub.on(:subscribe) {|channel, subscription_count| on_subscribe_callback.call(channel, subscription_count) if on_subscribe_callback}
      @redis_pubsub.on(:message)   {|channel, message| get_messages(message, channel, on_message_callback)}
      set_timer(on_message_callback);
      @redis_pubsub.subscribe(@channel)
    end

    def unsubscribe(&callback)
      deferable = @redis_pubsub.unsubscribe(@channel)
      deferable.callback do
        @redis_pubsub.close_connection
        @redis_pubsub = nil
        callback.call
      end
      deferable.errback do
        @redis_pubsub.close_connection
        @redis_pubsub = nil
        callback.call
      end
    end

    private

    def get_messages(message, channel, on_message_callback)
      return unless on_message_callback
      work_orders! do |work_orders_1|
        work_orders! do |work_orders|
          on_message_callback.call(work_orders_1 + work_orders, message, channel)
        end
      end
    end

    def set_timer(on_message_callback)
      return if (@timer || !on_message_callback)
      @timer = EM::PeriodicTimer.new(rand(20..25)) do
        work_orders! {|work_orders| on_message_callback.call(work_orders, nil, nil)}
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
worker_roulette-0.1.7 lib/worker_roulette/a_tradesman.rb