Completable::GetCompletionCallback
Defined in:
Returns the completion callback function for an object.
TSCompletable.h
Prototype
CompletionCallback *GetCompletionCallback(void) const;
Description
The GetCompletionCallback
function returns a pointer to the currently installed completion callback function. If no completion callback function has been installed, then this function returns nullptr
. The CompletionCallback
type is defined as
typedef void CompletionCallback(classType *, void *);
classType
is the template parameter for the Completable
class template.
See Also
Completable::SetCompletionCallback
Completable::GetCompletionCookie