Sha256: a70588209f290b27938853b1b45dbb16f9f5b6b9b1b4d714e93a13a0fd6edec7

Contents?: true

Size: 670 Bytes

Versions: 4

Compression:

Stored size: 670 Bytes

Contents

# frozen_string_literal: true

module Totoro
  class SubscribeService
    def initialize(config)
      @config = config
    end

    def subscribe(id)
      queue = bind_queue(id)
      queue.subscribe do |delivery_info, metadata, payload|
        yield(delivery_info, metadata, payload)
      end
    end

    def channel
      @channel ||= Bunny.new(@config.connect).tap(&:start).create_channel
    end

    private

    def bind_queue(id)
      exchange_name = @config.exchange_name_for_queue(id)
      if exchange_name.nil?
        channel.queue(*@config.queue(id))
      else
        channel.queue(*@config.queue(id)).bind(exchange_name)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
totoro-1.0.3 lib/totoro/services/subscribe_service.rb
totoro-1.0.2 lib/totoro/services/subscribe_service.rb
totoro-1.0.1 lib/totoro/services/subscribe_service.rb
totoro-1.0.0 lib/totoro/services/subscribe_service.rb