# File lib/stomp_server/queue_manager.rb, line 162 def send_to_user(frame, user) connection = user.connection if user.ack raise "other connection's end already busy" if @pending[connection] @pending[connection] = frame end connection.stomp_send_data(frame) end