The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<HTML>
<HEAD>
  <TITLE>MIME::Parser::Reader</TITLE>
</HEAD>
<BODY 
       bgcolor="#FFFFFF" link="#CC3366" vlink="#993366" alink="#FF6666">
<FONT FACE="sans-serif" SIZE=-1><A HREF="http://www.zeegee.com" TARGET="_top"><IMG SRC="icons/zeegee.gif" ALT="ZeeGee Software" ALIGN="RIGHT" BORDER="0"></A><A NAME="__TOP__"><H1>MIME::Parser::Reader</H1>
</A>
<P><B>This module is <FONT COLOR="#990000">BETA</FONT> code, which means that the interfaces are fairly stable BUT it has not been out in the community long enough to guarantee much testing. Use with caution! Please report any errors back to <A HREF="mailto:eryq@zeegee.com">eryq@zeegee.com</A> as soon as you can.</B><UL>
<LI> <A HREF="#NAME">NAME</A>
<LI> <A HREF="#SYNOPSIS">SYNOPSIS</A>
<LI> <A HREF="#DESCRIPTION">DESCRIPTION</A>
</UL>
</A>

<P><HR>
<A NAME="NAME"><H2><A HREF="#__TOP__"><IMG SRC="icons/h1bullet.gif" ALT="Top" BORDER="0"></A> NAME</H2></A>


<P>MIME::Parser::Reader - a line-oriented reader for a MIME::Parser



<P><HR>
<A NAME="SYNOPSIS"><H2><A HREF="#__TOP__"><IMG SRC="icons/h1bullet.gif" ALT="Top" BORDER="0"></A> SYNOPSIS</H2></A>


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

<FONT SIZE=3 FACE="courier"><PRE>
    ### Create a top-level reader, where chunks end at EOF:
    $rdr = MIME::Parser::Reader-&gt;new();
      
    ### Spawn a child reader, where chunks also end at a boundary:
    $subrdr = $rdr-&gt;spawn-&gt;add_boundary($bound);
     
    ### Spawn a child reader, where chunks also end at a given string:
    $subrdr = $rdr-&gt;spawn-&gt;add_terminator($string);
     
    ### Read until boundary or terminator:
    $subrdr-&gt;read_chunk($in, $out);
</PRE></FONT>


<P><HR>
<A NAME="DESCRIPTION"><H2><A HREF="#__TOP__"><IMG SRC="icons/h1bullet.gif" ALT="Top" BORDER="0"></A> DESCRIPTION</H2></A>


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


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

<P><HR>
<ADDRESS><FONT SIZE=-1>
Generated Wed Jan 17 01:58:29 2001 by cvu_pod2html
</FONT></ADDRESS>
</FONT></BODY>
</HTML>