Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

RDF::Redland::Stream

Name RDF::Redland::Stream
Version
Located at /usr/share/perl5
File /usr/share/perl5/RDF/Redland/Stream.pm
Is Core No
Search CPAN for this module RDF::Redland::Stream
Documentation RDF::Redland::Stream
Module Details RDF::Redland::Stream


NAME

RDF::Redland::Stream - Redland RDF Stream of RDF::Redland::Statement objects Class


SYNOPSIS

  use RDF::Redland;
  ...
  my $stream=$model->serialise;
  while($stream && !$stream->end) {
    my $statement=$stream->current;
    ...
    $stream->next;
  }


DESCRIPTION

Represents a sequence of RDF::Redland::Statement objects passed between various Redland objects.


CONSTRUCTORS

No public constructors - are created and returned from various methods of classes including RDF::Redland::Model and RDF::Redland::Parser


METHODS

end
Returns non 0 if the stream is finished.

current
Returns the current RDF::Redland::Statement object in the stream or undef if the stream is finished.

next
Moves to the next RDF::Redland::Statement object in the stream. Returns non-zero if the stream is finished.

context
Returns the context RDF::Redland::Node object in the stream or undef if the stream is finished.


SEE ALSO

the RDF::Redland::Model manpage and the RDF::Redland::Parser manpage


AUTHOR

Dave Beckett - http://www.dajobe.org/

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026