Re: [ros-users] questions about nodelets

Top Page
Attachments:
Message as email
+ (text/plain)
+ (text/html)
Delete this message
Reply to this message
Author: User discussions
Date:  
To: User discussions
Subject: 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