[TIBCO.EMS .NET client library 7.0 documentation]

Create a publisher for the specified topic.

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public TopicPublisher CreatePublisher(
	Topic topic
)
Public Function CreatePublisher ( _
	topic As Topic _
) As TopicPublisher
public:
TopicPublisher^ CreatePublisher(
	Topic^ topic
)

Parameters

topic
Type: TIBCO.EMS..::.Topic
the Topic to publish to, or null if this is an unidentified producer

Remarks

A client uses a TopicPublisher object to publish messages on a topic. Each time a client creates a TopicPublisher on a topic, it defines a new sequence of messages that have no ordering relationship with the messages it has previously sent.

See Also