Click or drag to resize

DomainParticipantCreateTopic Method (String, String)

Creates a new Topic with the default QoS policies and without listener attached.

Namespace:  OpenDDSharp.DDS
Assembly:  OpenDDSharp (in OpenDDSharp.dll) Version: 0.5.0.0
Syntax
public Topic CreateTopic(
	string topicName,
	string typeName
)

Parameters

topicName
Type: SystemString
The name for the new topic.
typeName
Type: SystemString
The name of the type which the new Topic will be bound.

Return Value

Type: Topic
The newly created Topic on success, otherwise .
Remarks

The created Topic belongs to the DomainParticipant that is its factory.

The Topic is bound to a type described by the typeName argument. Prior to creating a Topic the type must have been registered. This is done using the RegisterType operation on a derived class of the TypeSupport interface.

See Also