Class: XMLRPC::XMLParser::XMLStreamParser

Inherits:
AbstractStreamParser show all
Defined in:
lib/xmlrpc/parser.rb

Overview


Instance Method Summary collapse

Methods inherited from AbstractStreamParser

#parseMethodCall, #parseMethodResponse

Constructor Details

#initializeXMLStreamParser

Returns a new instance of XMLStreamParser.



581
582
583
584
585
586
# File 'lib/xmlrpc/parser.rb', line 581

def initialize
  require "xmlparser"
  @parser_class = Class.new(::XMLParser) {
    include StreamParserMixin
  }
end