# File lib/pr_eventmachine.rb, line 595
595:     def send_data data
596:       # TODO, coalesce here perhaps by being smarter about appending to @outbound_q.last?
597:       unless @close_scheduled or @close_requested or !data or data.length <= 0
598:         @outbound_q << data.to_s
599:       end
600:     end