RDF::Redland::Stream - Redland RDF Stream of RDF::Redland::Statement objects Class
use RDF::Redland;
... my $stream=$model->serialise; while($stream && !$stream->end) { my $statement=$stream->current; ... $stream->next; }
Represents a sequence of RDF::Redland::Statement objects passed between various Redland objects.
No public constructors - are created and returned from various methods of classes including RDF::Redland::Model and RDF::Redland::Parser
Returns non 0 if the stream is finished.
Returns the current RDF::Redland::Statement object in the stream or undef if the stream is finished.
Moves to the next RDF::Redland::Statement object in the stream. Returns non-zero if the stream is finished.
Returns the context RDF::Redland::Node object in the stream or undef if the stream is finished.
the RDF::Redland::Model manpage and the RDF::Redland::Parser manpage
Dave Beckett - http://www.dajobe.org/
(C) Copyright 2000-2008 Dave Beckett, (C) Copyright 2000-2005 University of Bristol