POE::Driver - POE Read/Write Abstraction


NAME

POE::Driver - POE Read/Write Abstraction


SUPPORTED PLATFORMS

This module is not included with the standard ActivePerl distribution. It is available as a separate download using PPM.

SYNOPSIS

  $driver = new POE::Driver::Something();
  $arrayref_of_data_chunks = $driver->get($filehandle);
  $queue_size = $driver->put($arrayref_of_data_chunks);
  $queue_size = $driver->flush($filehandle);


DESCRIPTION

Drivers provide a generic interface for low-level file I/O. Wheels use this interface to read and write files, sockets, and things, without having to know the details for each.

In theory, drivers should be pretty much interchangeable. In practice, there seems to be an impermeable barrier between the different SOCK_* types.


PUBLIC DRIVER METHODS

These methods are the generic Driver interface. Specific drivers may have additional methods.


SEE ALSO

POE::Driver::SysRW


BUGS

There is no POE::Driver::SendRecv


AUTHORS & COPYRIGHTS

Please see the POE manpage.

 POE::Driver - POE Read/Write Abstraction