*/ namespace Asio; /** * Interface IoObject * * Base class of all I/O objects. * * @package Asio */ interface IoObject { /** * Cancel all asynchronous operations on this I/O object. * * @return int : Error code */ function cancel(); }