Future::IO::ImplBase - base class for Future::IO implementations
Future::IO::ImplBase
Future::IO
This package provides a few utility methods that may help writing actual Future::IO implementation classes. It is entirely optional; implementations are not required to use it.
__PACKAGE__->APPLY
Attempts to set the value of the $Future::IO::IMPL variable to the name of the calling package.
$Future::IO::IMPL
These methods are provided based on lower-level functionallity that the implementing class should provide.
Implemented by wrapping ready_for_read, as "sysread" uses.
ready_for_read
Implemented by wrapping sleep.
sleep
Implemented by wrapping ready_for_write, as "syswrite" uses.
ready_for_write
Requires a lower-level method
$f = $class->ready_for_read( $fh )
which should return a Future that completes when the given filehandle may be ready for reading.
$f = $class->ready_for_write( $fh )
which should return a Future that completes when the given filehandle may be ready for writing.
Paul Evans <leonerd@leonerd.org.uk>
To install Future::IO, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Future::IO
CPAN shell
perl -MCPAN -e shell install Future::IO
For more information on module installation, please visit the detailed CPAN module installation guide.