[TIBCO.EMS.UFOCLIENT .NET client library 6.0 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.UFO
Assembly:  TIBCO.EMS.UFO (in TIBCO.EMS.UFO.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.UFO..::.Topic
The Topic to which this message is to be published.
message
Type: TIBCO.EMS.UFO..::.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