[TIBCO.EMS .NET client library 8.1 documentation]

Publishes a message to a topic for an unidentified message producer. Uses the TopicPublisher's default delivery mode, priority, and time to live.

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

Syntax

public void Publish(
	Topic topic,
	Message message
)
Public Sub Publish ( _
	topic As Topic, _
	message As Message _
)
public:
void Publish(
	Topic^ topic, 
	Message^ message
)

Parameters

topic
Type: TIBCO.EMS..::.Topic
The Topic to which this message is to be published.
message
Type: TIBCO.EMS..::.Message
The message to publish.

Remarks

Typically, a message producer is assigned a topic at creation time; however, the TIBCO EME .NET API also supports unidentified message producers, which require that the topic be supplied every time a message is published.

See Also