# File lib/autumn/stem_facade.rb, line 22
    def message(msg, *chans)
      return if msg.nil? or msg.empty?
      chans = channels if chans.empty?
      if @throttle then
        Thread.exclusive { msg.each_line { |line| privmsgt chans.to_a, line.strip unless line.strip.empty? } }
      else
        msg.each_line { |line| privmsg chans.to_a, line.strip unless line.strip.empty? }
      end
    end