Re: [ros-users] questions about nodelets

Forside
Vedhæftede filer:
Indlæg som e-mail
+ (text/plain)
+ (text/html)
Slet denne besked
Besvar denne besked
Skribent: User discussions
Dato:  
Til: User discussions
Emne: Re: [ros-users] questions about nodelets
>
>
> Sure. I assume the callbacks just don't get called any more. But, a
> device thread (see below) needs to know when to terminate. Does it
> still check ros::ok() or ros::shutdown()?
>


No, you'd check some flag that you set in your nodelet's destructor, and
then the destructor joins on that thread. Your nodelet may be getting
stopped even though the node itself is still running.

Josh