RDF::Redland::Stream - phpMan

Command: man perldoc info search(apropos)  


Sections
NAME SYNOPSIS DESCRIPTION CONSTRUCTORS METHODS SEE ALSO AUTHOR
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
    RDF::Redland::Model and RDF::Redland::Parser

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


Generated by phpMan Author: Che Dong On Apache Under GNU General Public License - MarkDown Format
2026-05-23 05:58 @216.73.217.24 CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 TransitionalValid CSS!

^_back to top