mco_fh_mod_stop

Request that the module to stop execution.

Prototype

 
    void mco_fh_mod_stop(/*IN*/ mco_fh_module_h h);
 

Arguments

h The module handle

Description

This function requests that the module stop. The module should stop all its threads and wait for them to finish.

Return Codes

void No return value.

Example

 
    void mco_fh_mod_stop(mco_fh_module_h h)
    {
        reinterpret_cast<TestFeedHandler *>(h)->stop();
    }