Sha256: 4db70ff39412d5cf1f4055f232c07a583174b61a8b99ba7e4db5308d99696b4d
Contents?: true
Size: 1.01 KB
Versions: 1
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true require 'bunny' module Totoro class BaseQueue class <<self def config @config ||= Totoro::Config.new end def connection @connection ||= Bunny.new(config.connect).tap(&:start) end def channel @channel ||= connection.create_channel end def exchange @exchange ||= channel.default_exchange end # enqueue = publish to direct exchange def enqueue(id, payload) queue = channel.queue(*config.queue(id)) payload = JSON.dump payload Rails.logger.info "#{queue.name} Send: #{payload}" exchange.publish(payload, routing_key: queue.name) end def subscribe(id) queue = channel.queue(*config.queue(id)) queue.subscribe do |delivery_info, metadata, payload| yield(delivery_info, metadata, payload) end end def get_worker(worker_class) ::Worker.const_get(worker_class.to_s.camelize).new end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
totoro-0.2.2 | lib/totoro/base_queue.rb |