ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/IO-AIO/README
(Generate patch)

Comparing cvsroot/IO-AIO/README (file contents):
Revision 1.13 by root, Tue Aug 30 15:45:10 2005 UTC vs.
Revision 1.15 by root, Wed Feb 1 23:43:17 2006 UTC

12 aio_unlink "/tmp/file", sub { }; 12 aio_unlink "/tmp/file", sub { };
13 13
14 aio_read $fh, 30000, 1024, $buffer, 0, sub { 14 aio_read $fh, 30000, 1024, $buffer, 0, sub {
15 $_[0] > 0 or die "read error: $!"; 15 $_[0] > 0 or die "read error: $!";
16 }; 16 };
17
18 # AnyEvent
19 open my $fh, "<&=" . IO::AIO::poll_fileno or die "$!";
20 my $w = AnyEvent->io (fh => $fh, poll => 'r', cb => sub { IO::AIO::poll_cb });
17 21
18 # Event 22 # Event
19 Event->io (fd => IO::AIO::poll_fileno, 23 Event->io (fd => IO::AIO::poll_fileno,
20 poll => 'r', 24 poll => 'r',
21 cb => \&IO::AIO::poll_cb); 25 cb => \&IO::AIO::poll_cb);
196 200
197 aio_rmdir $pathname, $callback->($status) 201 aio_rmdir $pathname, $callback->($status)
198 Asynchronously rmdir (delete) a directory and call the callback with 202 Asynchronously rmdir (delete) a directory and call the callback with
199 the result code. 203 the result code.
200 204
201 aio_readdir $pathname $callback->($entries) 205 aio_readdir $pathname, $callback->($entries)
202 Unlike the POSIX call of the same name, "aio_readdir" reads an 206 Unlike the POSIX call of the same name, "aio_readdir" reads an
203 entire directory (i.e. opendir + readdir + closedir). The entries 207 entire directory (i.e. opendir + readdir + closedir). The entries
204 will not be sorted, and will NOT include the "." and ".." entries. 208 will not be sorted, and will NOT include the "." and ".." entries.
205 209
206 The callback a single argument which is either "undef" or an 210 The callback a single argument which is either "undef" or an

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines