[TIBCO.EMS .NET client library 7.0 documentation]

Construct a TopicRequestor object given a topic session and topic.

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

Syntax

public TopicRequestor(
	TopicSession session,
	Topic topic
)
Public Sub New ( _
	session As TopicSession, _
	topic As Topic _
)
public:
TopicRequestor(
	TopicSession^ session, 
	Topic^ topic
)

Parameters

session
Type: TIBCO.EMS..::.TopicSession

The non-transacted TopicSession.

The requestor operates within this topic session.

This session must not use transaction semantics. Its delivery mode must be either AutoAcknowledge or DupsOkAcknowledge.

The Close method also closes this session as a side effect.

topic
Type: TIBCO.EMS..::.Topic
The topic destination on which to send a request and wait for a reply. Note that this topic must belong to the TopicSession provided by the session parameter

Exceptions

ExceptionCondition
TIBCO.EMS..::.EMSExceptionAn EMSExceptin may be thrown in case of failure

See Also