Python type hints for ros2 service callback?

asked 2023-05-17 11:37:28 -0500

lexi gravatar image

I am following the ros2 tutorial to create a service handler with ROS, but the tutorial doesn't include type hints. Tutorial here: https://docs.ros.org/en/foxy/Tutorial...

What would the type hints be for the parameters to the service callback function in this example?

from example_interfaces.srv import AddTwoInts

import rclpy
from rclpy.node import Node


class MinimalService(Node):

    def __init__(self):
        super().__init__('minimal_service')
        self.srv = self.create_service(AddTwoInts, 'add_two_ints', self.add_two_ints_callback)

    def add_two_ints_callback(self, request, response):
        response.sum = request.a + request.b
        self.get_logger().info('Incoming request\na: %d b: %d' % (request.a, request.b))

        return response


def main(args=None):
    rclpy.init(args=args)

    minimal_service = MinimalService()

    rclpy.spin(minimal_service)

    rclpy.shutdown()


if __name__ == '__main__':
    main()
edit retag flag offensive close merge delete