Thread
- this
this(ThreadDelegate callback, size_t stackSize)
Create a suspended thread.
- ~this
~this()
Destroys a thread. The thread is supposed to be finished at this point.
A postblit is present on this object, but not explicitly documented in the source.
- join
void join()
Wait for that thread termination
- start
void start()
Starts the thread. Threads are created suspended. This function can only be called once.
Optimistic thread, failure not supported