# File lib/stomp_server/topic_manager.rb, line 34 def sendmsg(msg) msg.command = "MESSAGE" topic = msg.headers['destination'] @topics[topic].each do |user| user.stomp_send_data(msg) end end