# File lib/nanite/streaming.rb, line 30
    def broadcast_file(filename, options = {})
      if File.exist?(filename)
        File.open(filename, 'rb') do |file|
           broadcast_data(filename, file, options)
        end
      else
        return "file not found"
      end
    end