All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.ros2.ROS2PublisherBasics Maven / Gradle / Ivy

The newest version!
package us.ihmc.ros2;

public interface ROS2PublisherBasics
{
   /**
    * Publish data to the ROS 2 domain.
    *
    * @param data Data to publisher
    * @return true if published, false if not published
    */
   boolean publish(T data);

   /**
    * Remove this publisher from the ROS 2 domain.
    */
   void remove();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy