ADC Home > Reference Library > Reference > Mac OS X > Mac OS X Man Pages

 

This document is a Mac OS X manual page. Manual pages are a command-line technology for providing documentation. You can view these manual pages locally using the man(1) command. These manual pages come from many different sources, and thus, have a variety of writing styles.

For more information about the manual page format, see the manual page for manpages(5).



MIME::Parser::Reader(3)              User Contributed Perl Documentation             MIME::Parser::Reader(3)



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



perl v5.8.8                                      2000-09-20                          MIME::Parser::Reader(3)

Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.