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

NAME

Filesource - Reporter handler for plain text information

SYNOPSIS

use Data::Reporter::Filesource;

 $source = new Data::Reporter::Filesource(File => $file);
#                       $file                   - source filename

 $subru = sub {print "record -> $_\n"};
 $source->getdata($subru);
 $source->configure(File => $file);

DESCRIPTION

new()

Creates a new handler to manipulate the file information.

$source->configure(option => value)

File File with the information to process. It is the only valid option at this moment

$source->getdata($subru)

For each record in the file, call the function $subru, passing the record as a parameter

NOTES

"|" is the field separator.

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 20:

'=item' outside of any '=over'

Around line 32:

You forgot a '=back' before '=head1'