Abstract base class for all the concrete implementation classes that provide different implementations for the ACE_Asynch_Read_Stream::Result class.
class ACE_Asynch_Read_Stream_Result_Impl : public virtual ACE_Asynch_Result_Impl {
public:
virtual ~ACE_Asynch_Read_Stream_Result_Impl (void);
virtual u_long bytes_to_read (void) const = 0;
virtual ACE_Message_Block &message_block (void) const = 0;
virtual ACE_HANDLE handle (void) const = 0;
protected:
ACE_Asynch_Read_Stream_Result_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.
virtual ~ACE_Asynch_Read_Stream_Result_Impl (void);
virtual u_long bytes_to_read (void) const = 0;
virtual ACE_Message_Block &message_block (void) const = 0;
virtual ACE_HANDLE handle (void) const = 0;
ACE_Asynch_Read_Stream_Result_Impl (void);
Irfan Pyarali (irfan@cs.wustl.edu),
Tim Harrison (harrison@cs.wustl.edu) and
Alexander Babu Arulanthu alex@cs.wustl.edu
ace