Request that the module to stop execution.
void mco_fh_mod_stop(/*IN*/ mco_fh_module_h h);
h | The module handle |
This function requests that the module stop. The module should stop all its threads and wait for them to finish.
void | No return value. |
void mco_fh_mod_stop(mco_fh_module_h h) { reinterpret_cast<TestFeedHandler *>(h)->stop(); }