GOG GALAXY SDK Documentation
|
The interface representing a thread object. More...
#include <GalaxyThread.h>
Public Member Functions | |
virtual void | Join ()=0 |
Join the thread. More... | |
virtual bool | Joinable ()=0 |
Checks if the IGalaxyThread is ready to Join(). More... | |
virtual void | Detach ()=0 |
Detach the thread. More... | |
The interface representing a thread object.
|
pure virtual |
Detach the thread.
Separate the thread of execution from the IGalaxyThread object, allowing execution to continue independently.
|
pure virtual |
Join the thread.
Wait until IGalaxyThread execution is finished. Internal callers of this function are blocked until the function returns.
|
pure virtual |
Checks if the IGalaxyThread is ready to Join().