Abstract base class for all the concrete implementation classes that provide different implementations for the ACE_Asynch_Accept.
class ACE_Asynch_Accept_Impl : public virtual ACE_Asynch_Operation_Impl {
public:
virtual ~ACE_Asynch_Accept_Impl (void);
virtual int accept ( ACE_Message_Block &message_block, u_long bytes_to_read, ACE_HANDLE accept_handle, const void *act, int priority, int signal_number ) = 0;
protected:
ACE_Asynch_Accept_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_Accept_Impl (void);
virtual int accept (
ACE_Message_Block &message_block,
u_long bytes_to_read,
ACE_HANDLE accept_handle,
const void *act,
int priority,
int signal_number
) = 0;
handler
. Upto bytes_to_read
will be read and stored in the
message_block
. The accept_handle
will be used for the
accept
call. If (accept_handle
== INVALID_HANDLE), a new
handle will be created.
message_block
must be specified. This is because the address of
the new connection is placed at the end of this buffer.
ACE_Asynch_Accept_Impl (void);
Irfan Pyarali (irfan@cs.wustl.edu),
Tim Harrison (harrison@cs.wustl.edu) and
Alexander Babu Arulanthu alex@cs.wustl.edu
ace