The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

RDF::Redland - Redland RDF Class

SYNOPSIS

  use RDF::Redland;
  my $storage=new RDF::Redland::Storage("hashes", "test", "new='yes',hash-type='memory'");
  my $model=new RDF::Redland::Model($storage, "");

  ...

DESCRIPTION

This class initialises the Redland RDF classes.

STATIC METHODS

set_error_handler SUB

Set SUB as the subroutine to be called on a Redland error with the error message as the single argument. For example:

  RDF::Redland::set_error_handler(sub {
    my $msg=shift;
    # Do something with $msg
  });

The default if this is not set, is to run die $msg

set_warning_handler SUB

Set SUB as the subroutine to be called on a Redland warning with the warning message as the single argument. For example:

  RDF::Redland::set_warning_handler(sub {
    my $msg=shift;
    # Do something with $msg
  });

The default if this is not set, is to run warn $msg

SEE ALSO

RDF::Redland::Node, RDF::Redland::Statement, RDF::Redland::Model, RDF::Redland::Storage, RDF::Redland::Parser, RDF::Redland::Iterator, RDF::Redland::Stream, RDF::Redland::URI and RDF::Redland::RSS.

AUTHOR

Dave Beckett - http://purl.org/net/dajobe/