Understanding actionsBackgroundaction 또한 ROS2에서 communication하는 방법 중 하나이다.action은 goal, feedback, result 3파트로 구성되어 있다.action은 취소할 수 있다는 것 외에는 service와 유사하다.또한 single response를 return하는 service와 달리 꾸준히 feedback을 한다. action은 client-server model, topic은 publisher-subscriber model이다.action client노드는 action server노드(goal을 승인해줌)로 goal을 보내고 feedback과 result를 받는다. topicserviceactionmodelpublisher-subsc..