ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/lib/AnyEvent/Handle.pm
(Generate patch)

Comparing AnyEvent/lib/AnyEvent/Handle.pm (file contents):
Revision 1.45 by root, Thu May 29 00:20:39 2008 UTC vs.
Revision 1.46 by root, Thu May 29 00:22:36 2008 UTC

155isn't finished). 155isn't finished).
156 156
157=item read_size => <bytes> 157=item read_size => <bytes>
158 158
159The default read block size (the amount of bytes this module will try to read 159The default read block size (the amount of bytes this module will try to read
160on each [loop iteration). Default: C<4096>. 160during each (loop iteration). Default: C<8192>.
161 161
162=item low_water_mark => <bytes> 162=item low_water_mark => <bytes>
163 163
164Sets the amount of bytes (default: C<0>) that make up an "empty" write 164Sets the amount of bytes (default: C<0>) that make up an "empty" write
165buffer: If the write reaches this size or gets even samller it is 165buffer: If the write reaches this size or gets even samller it is
238} 238}
239 239
240sub _shutdown { 240sub _shutdown {
241 my ($self) = @_; 241 my ($self) = @_;
242 242
243 delete $self->{_tw};
243 delete $self->{_rw}; 244 delete $self->{_rw};
244 delete $self->{_ww}; 245 delete $self->{_ww};
245 delete $self->{fh}; 246 delete $self->{fh};
246} 247}
247 248

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines