Click or drag to resize

PublisherCreateDataWriter Method (Topic, DataWriterListener)

Creates a new DataWriter with the default QoS policies and attaches to it the specified DataWriterListener. The specified DataWriterListener will be attached with the default StatusMask.

Namespace:  OpenDDSharp.DDS
Assembly:  OpenDDSharp (in OpenDDSharp.dll) Version: 0.5.0.0
Syntax
public DataWriter CreateDataWriter(
	Topic topic,
	DataWriterListener listener
)

Parameters

topic
Type: OpenDDSharp.DDSTopic
The Topic that the DataWriter will be associated with.
listener
Type: OpenDDSharp.OpenDDS.DCPSDataWriterListener
The DataWriterListener to be attached to the newly created DataWriter.

Return Value

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

The created DataWriter will be attached and belongs to the Publisher that is its factory.

The Topic passed to this operation must have been created from the same DomainParticipant that was used to create this Publisher. If the Topic was created from a different DomainParticipant, the operation will fail and return a result.

See Also