Perl Diver 2.31
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.

MIME::Parser::Reader

Name MIME::Parser::Reader
Version
Located at /usr/local/share/perl5
File /usr/local/share/perl5/MIME/Parser/Reader.pm
Is Core No
Search CPAN for this module MIME::Parser::Reader
Documentation MIME::Parser::Reader
Module Details MIME::Parser::Reader

NAME

MIME::Parser::Reader - a line-oriented reader for a MIME::Parser


SYNOPSIS

This module is used internally by MIME::Parser; you probably don't need to be looking at it at all. But just in case...

    ### Create a top-level reader, where chunks end at EOF:
    $rdr = MIME::Parser::Reader->new();
    ### Spawn a child reader, where chunks also end at a boundary:
    $subrdr = $rdr->spawn->add_boundary($bound);
    ### Spawn a child reader, where chunks also end at a given string:
    $subrdr = $rdr->spawn->add_terminator($string);
    ### Read until boundary or terminator:
    $subrdr->read_chunk($in, $out);


DESCRIPTION

A line-oriented reader which can deal with virtual end-of-stream defined by a collection of boundaries.

Warning: this is a private class solely for use by MIME::Parser. This class has no official public interface


SEE ALSO

the MIME::Tools manpage, the MIME::Parser manpage

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