
RDF::Trine::Iterator::SAXHandler - SAX Handler for parsing SPARQL XML Results format

This document describes RDF::Trine::Iterator::SAXHandler version 0.111

use RDF::Trine::Iterator::SAXHandler;
my $handler = RDF::Trine::Iterator::SAXHandler->new();
my $p = XML::SAX::ParserFactory->parser(Handler => $handler);
$p->parse_file( $string );
my $iter = $handler->iterator;

iteratorReturns the RDF::Trine::Iterator object after parsing is complete.
has_headReturns true if the <head/> element has been completely parsed, false otherwise.
has_endReturns true if the <sparql/> element (the entire iterator) has been completely parsed, false otherwise.
iterator_classReturns the iterator class appropriate for the parsed results (either ::Iterator::Boolean or ::Iterator::Bindings).
iterator_argsReturns the arguments suitable for passing to the iterator constructor after the iterator data.
pull_resultReturns the next result from the iterator, if available (if it has been parsed yet). Otherwise, returns the empty list.
rateReturns the number of results parsed per second for this iterator.

Gregory Todd Williams <gwilliams@cpan.org>

Copyright (c) 2006-2009 Gregory Todd Williams. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.