MCPcopy Create free account
hub / github.com/alibaba/async_simple / join

Method join

demo_example/asio/asio/thread.hpp:79–82  ·  view source on GitHub ↗

Wait for the thread to exit. * This function will block until the thread has exited. * * If this function is not called before the thread object is destroyed, the * thread itself will continue to run until completion. You will, however, * no longer have the ability to wait for it to exit. */

Source from the content-addressed store, hash-verified

77 * no longer have the ability to wait for it to exit.
78 */
79 void join()
80 {
81 impl_.join();
82 }
83
84private:
85 detail::thread impl_;

Callers 9

mainFunction · 0.45
mainFunction · 0.45
runMethod · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45
mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected