mco_fh_app_stop

Request the Feed Handler application to shutdown.

Prototype

 
    void	mco_fh_app_stop(void);
 

Arguments

void No arguments

Description

This function requests the Feed Handler application to shutdown and should only be called after the module execution has been started with mco_fh_mod_start() and before mco_fh_mod_stop() is called.

Return Codes

void No return value.

Example

 
     
    {
        ...
        mco_fh_app_stop();
        
        ...
    }