Abstract base class for all the concrete implementation classes that provide different implementations for the ACE_Asynch_Read_Stream
class ACE_Asynch_Read_Stream_Impl : public virtual ACE_Asynch_Operation_Impl {
public:inline virtual ~ACE_Asynch_Read_Stream_Impl (void);virtual int read ( ACE_Message_Block &message_block, u_long bytes_to_read, const void *act, int priority, int signal_number ) = 0;protected:ACE_Asynch_Read_Stream_Impl (void);};
This class contains asbtract base classes for all the concrete implementation classes for the various asynchronous operations that are used with the Praoctor.
inline virtual ~ACE_Asynch_Read_Stream_Impl (void);
virtual int read (
    ACE_Message_Block &message_block,
    u_long bytes_to_read,
    const void *act,
    int priority,
    int signal_number
    ) = 0;
bytes_to_read will
be read and stored in the message_block.
ACE_Asynch_Read_Stream_Impl (void);
Irfan Pyarali (irfan@cs.wustl.edu),
Tim Harrison (harrison@cs.wustl.edu) and
Alexander Babu Arulanthu alex@cs.wustl.edu
ace