Sha256: 1d5f518d80933352fa61543fd94e9f75b2649bf2b3fac60f6118ac17ede66470

Contents?: true

Size: 1.85 KB

Versions: 88

Compression:

Stored size: 1.85 KB

Contents

module EventMachine
  # A cross thread, reactor scheduled, linear queue.
  #
  # This class provides a simple queue abstraction on top of the reactor
  # scheduler. It services two primary purposes:
  #
  # * API sugar for stateful protocols
  # * Pushing processing onto the reactor thread
  #
  # @example
  #
  #  q = EM::Queue.new
  #  q.push('one', 'two', 'three')
  #  3.times do
  #    q.pop { |msg| puts(msg) }
  #  end
  #
  class Queue
    def initialize
      @items = []
      @popq  = []
    end

    # Pop items off the queue, running the block on the reactor thread. The pop
    # will not happen immediately, but at some point in the future, either in
    # the next tick, if the queue has data, or when the queue is populated.
    #
    # @return [NilClass] nil
    def pop(*a, &b)
      cb = EM::Callback(*a, &b)
      EM.schedule do
        if @items.empty?
          @popq << cb
        else
          cb.call @items.shift
        end
      end
      nil # Always returns nil
    end

    # Push items onto the queue in the reactor thread. The items will not appear
    # in the queue immediately, but will be scheduled for addition during the
    # next reactor tick.
    def push(*items)
      EM.schedule do
        @items.push(*items)
        @popq.shift.call @items.shift until @items.empty? || @popq.empty?
      end
    end
    alias :<< :push

    # @return [Boolean]
    # @note This is a peek, it's not thread safe, and may only tend toward accuracy.
    def empty?
      @items.empty?
    end

    # @return [Integer] Queue size
    # @note This is a peek, it's not thread safe, and may only tend toward accuracy.
    def size
      @items.size
    end

    # @return [Integer] Waiting size
    # @note This is a peek at the number of jobs that are currently waiting on the Queue
    def num_waiting
      @popq.size
    end

  end # Queue
end # EventMachine

Version data entries

88 entries across 88 versions & 6 rubygems

Version Path
sensu-em-2.7.0-java lib/em/queue.rb
sensu-em-2.6.0-java lib/em/queue.rb
eventmachine-1.0.9.1 lib/em/queue.rb
eventmachine-1.0.9.1-java lib/em/queue.rb
eventmachine-1.0.9-java lib/em/queue.rb
eventmachine-1.0.9 lib/em/queue.rb
eventmachine-1.0.8 lib/em/queue.rb
eventmachine-1.0.8-java lib/em/queue.rb
sensu-em-2.5.2-java lib/em/queue.rb
sensu-em-2.5.2 lib/em/queue.rb
sensu-em-2.5.1-java lib/em/queue.rb
sensu-em-2.5.1 lib/em/queue.rb
sensu-em-2.5.0-java lib/em/queue.rb
sensu-em-2.5.0 lib/em/queue.rb
sensu-em-2.5.0.beta-java lib/em/queue.rb
sensu-em-2.5.0.beta lib/em/queue.rb
eventmachine-1.0.7 lib/em/queue.rb
eventmachine-1.0.7-java lib/em/queue.rb
sensu-em-2.4.1-java lib/em/queue.rb
sensu-em-2.4.1 lib/em/queue.rb