Uses of Interface
org.omg.dds.topic.Topic

Packages that use Topic
org.omg.dds.core.status   
org.omg.dds.domain The Domain Module contains the DomainParticipant class that acts as an entry-point of the Service and acts as a factory for many of the classes. 
org.omg.dds.pub The Publication Module contains the Publisher and DataWriter interfaces as well as the PublisherListener and DataWriterListener interfaces, and more generally, all that is needed on the publication side. 
org.omg.dds.topic The Topic-Definition Module contains the Topic, ContentFilteredTopic, and MultiTopic interfaces, the TopicListener interface, and more generally, all that is needed by the application to define Topic objects and attach QoS policies to them. 
 

Uses of Topic in org.omg.dds.core.status
 

Constructors in org.omg.dds.core.status with parameters of type Topic
InconsistentTopicStatus(Topic<TYPE> source)
           
 

Uses of Topic in org.omg.dds.domain
 

Methods in org.omg.dds.domain that return Topic
<TYPE> Topic<TYPE>
DomainParticipant.createTopic(java.lang.String topicName, java.lang.Class<TYPE> type)
           
<TYPE> Topic<TYPE>
DomainParticipant.createTopic(java.lang.String topicName, java.lang.Class<TYPE> type, java.lang.String qosLibraryName, java.lang.String qosProfileName, TopicListener<TYPE> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new topic.
<TYPE> Topic<TYPE>
DomainParticipant.createTopic(java.lang.String topicName, java.lang.Class<TYPE> type, TopicQos qos, TopicListener<TYPE> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new topic.
<TYPE> Topic<TYPE>
DomainParticipant.createTopic(java.lang.String topicName, TypeSupport<TYPE> type)
           
<TYPE> Topic<TYPE>
DomainParticipant.createTopic(java.lang.String topicName, TypeSupport<TYPE> type, java.lang.String qosLibraryName, java.lang.String qosProfileName, TopicListener<TYPE> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new topic.
<TYPE> Topic<TYPE>
DomainParticipant.createTopic(java.lang.String topicName, TypeSupport<TYPE> type, TopicQos qos, TopicListener<TYPE> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new topic.
<TYPE> Topic<TYPE>
DomainParticipant.findTopic(java.lang.String topicName, Duration timeout)
           
<TYPE> Topic<TYPE>
DomainParticipant.findTopic(java.lang.String topicName, long timeout, java.util.concurrent.TimeUnit unit)
           
 

Methods in org.omg.dds.domain with parameters of type Topic
<TYPE> ContentFilteredTopic<TYPE>
DomainParticipant.createContentFilteredTopic(java.lang.String name, Topic<? extends TYPE> relatedTopic, java.lang.String filterExpression, java.util.List<java.lang.String> expressionParameters)
           
 

Uses of Topic in org.omg.dds.pub
 

Methods in org.omg.dds.pub that return Topic
 Topic<TYPE> DataWriter.getTopic()
           
 

Methods in org.omg.dds.pub with parameters of type Topic
 BytesDataWriter Publisher.createBytesDataWriter(Topic<byte[]> topic)
           
 BytesDataWriter Publisher.createBytesDataWriter(Topic<byte[]> topic, DataWriterQos qos, DataWriterListener<byte[]> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 BytesDataWriter Publisher.createBytesDataWriter(Topic<byte[]> topic, java.lang.String qosLibraryName, java.lang.String qosProfileName, DataWriterListener<byte[]> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
<TYPE> DataWriter<TYPE>
Publisher.createDataWriter(Topic<TYPE> topic)
           
<TYPE> DataWriter<TYPE>
Publisher.createDataWriter(Topic<TYPE> topic, DataWriterQos qos, DataWriterListener<TYPE> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
<TYPE> DataWriter<TYPE>
Publisher.createDataWriter(Topic<TYPE> topic, java.lang.String qosLibraryName, java.lang.String qosProfileName, DataWriterListener<TYPE> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 KeyedBytesDataWriter Publisher.createKeyedBytesDataWriter(Topic<KeyedBytes> topic)
           
 KeyedBytesDataWriter Publisher.createKeyedBytesDataWriter(Topic<KeyedBytes> topic, DataWriterQos qos, DataWriterListener<KeyedBytes> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 KeyedBytesDataWriter Publisher.createKeyedBytesDataWriter(Topic<KeyedBytes> topic, java.lang.String qosLibraryName, java.lang.String qosProfileName, DataWriterListener<KeyedBytes> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 KeyedStringDataWriter Publisher.createKeyedStringDataWriter(Topic<KeyedString> topic)
           
 KeyedStringDataWriter Publisher.createKeyedStringDataWriter(Topic<KeyedString> topic, DataWriterQos qos, DataWriterListener<KeyedString> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 KeyedStringDataWriter Publisher.createKeyedStringDataWriter(Topic<KeyedString> topic, java.lang.String qosLibraryName, java.lang.String qosProfileName, DataWriterListener<KeyedString> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 StringDataWriter Publisher.createStringDataWriter(Topic<java.lang.String> topic)
           
 StringDataWriter Publisher.createStringDataWriter(Topic<java.lang.String> topic, DataWriterQos qos, DataWriterListener<java.lang.String> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 StringDataWriter Publisher.createStringDataWriter(Topic<java.lang.String> topic, java.lang.String qosLibraryName, java.lang.String qosProfileName, DataWriterListener<java.lang.String> listener, java.util.Collection<java.lang.Class<? extends Status<?,?>>> statuses)
          Create a new data writer.
 BytesDataWriter Publisher.lookupBytesDataWriter(Topic<byte[]> topicName)
           
<TYPE> DataWriter<TYPE>
Publisher.lookupDataWriter(Topic<TYPE> topicName)
           
 KeyedBytesDataWriter Publisher.lookupKeyedBytesDataWriter(Topic<KeyedBytes> topicName)
           
 KeyedStringDataWriter Publisher.lookupKeyedStringDataWriter(Topic<KeyedString> topicName)
           
 StringDataWriter Publisher.lookupStringDataWriter(Topic<java.lang.String> topicName)
           
 

Uses of Topic in org.omg.dds.topic
 

Methods in org.omg.dds.topic that return Topic
 Topic<? extends TYPE> ContentFilteredTopic.getRelatedTopic()
           
 



Copyright © 2010 Real-Time Innovations, Inc. (RTI)
Copyright © 2010 PrismTech, Ltd.
Copyright © 2010 Object Management Group, Inc. (OMG)
All Rights Reserved.