#include <AsyncSocket.h>
Inheritance diagram for OW32::CAsyncSocketCallback:
Public Member Functions | |
virtual void | onReadCompletion (BOOL, DWORD) |
Called when a read has completed. | |
virtual void | onSendCompletion (BOOL, DWORD) |
Called when a send has completed. | |
virtual void | onTransmitFileCompletion (BOOL, DWORD) |
Called when transmitFile has completed. | |
virtual void | onConnectCompletion (BOOL) |
Called when a connect() attempt has completed. | |
virtual void | onCloseCompletion (BOOL) |
Called when a socket has been closed. | |
virtual void | onAcceptCompletion (BOOL) |
Called when an accept() has completed. | |
virtual void | onTimeout () |
Called when the network idle timeout has been reached. | |
virtual void | onAllNotificationsProcessed () |
Called when all outstanding notifications have been processed. |
|
Called when an accept() has completed.
Reimplemented in OW32::CMessageListener. |
|
Called when all outstanding notifications have been processed. After this has been called, you can assume that no further notifications will be made to the callback. |
|
Called when a socket has been closed.
|
|
Called when a connect() attempt has completed.
|
|
Called when a read has completed.
|
|
Called when a send has completed.
|
|
Called when the network idle timeout has been reached. Note: for io/completion port sockets, you will still get a notification of failed read on CancelIo or close(). |
|
Called when transmitFile has completed.
|