# File lib/stomp_server/queue_manager.rb, line 63 def initialize(qstore) @qstore = qstore @queues = Hash.new { Array.new } @pending = Hash.new if $STOMP_SERVER monitor = StompServer::QueueMonitor.new(@qstore,@queues) monitor.start puts "Queue monitor started" if $DEBUG end end