class EventMachine::Queue

def empty?

Other tags:
    Note: - This is a peek, it's not thread safe, and may only tend toward accuracy.

Returns:
  • (Boolean) -
def empty?
  @drain.empty? && @sink.empty?
end