Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 package org.ros.node.topic;
00018
00019 import org.ros.internal.node.topic.TopicParticipant;
00020
00021 import java.util.concurrent.TimeUnit;
00022
00032 public interface Publisher<T> extends TopicParticipant {
00033
00042 void setLatchMode(boolean enabled);
00043
00051 boolean getLatchMode();
00052
00058 T newMessage();
00059
00067 void publish(T message);
00068
00073 boolean hasSubscribers();
00074
00087 int getNumberOfSubscribers();
00088
00098 void shutdown(long timeout, TimeUnit unit);
00099
00110 void shutdown();
00111
00118 void addListener(PublisherListener<T> listener);
00119 }