ContextFactory.CreateDurableTopicEndpointEx Method

Solclient

ContextFactoryCreateDurableTopicEndpointEx Method
version: 7.2.1.27
Creates a representation of a durable Topic Endpoint (DTE) in the API.

A DTE is a holding area which allows a subscriber to attract Guaranteed messages matching a given Topic subscription. Durable means that the subscriber that is bound to the given DTE, does not have to be online to attract matching messages.

This method does not provision the DTE on the appliance. The represented DTE must be first provisioned on the appliance before any use by the API. Applications are able to provision DTEs on the appliance using Provision(IEndpoint, EndpointProperties, Int32, Object) where capability ENDPOINT_MANAGEMENT exists. The name parameter is the name given to the Topic Endpoint when provisioning it on the appliance. Applications can call Provision(IEndpoint, EndpointProperties, Int32, Object) to provision it on the appliance.

To consume messages from a given DTE, client applications must create a Flow using CreateFlow(...) on ISession passing in the corresponding DTE. Also, there can be only one active flow per DTE.

DTEs are only supported on appliances with an Assured Delivery Blade (ADB).

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 7.2.1.27 (7.2.1.27)
Syntax
public ITopicEndpoint CreateDurableTopicEndpointEx(
	string name
)
Public Function CreateDurableTopicEndpointEx ( 
	name As String
) As ITopicEndpoint
public:
ITopicEndpoint^ CreateDurableTopicEndpointEx(
	String^ name
)

Parameters

name
Type: SystemString

Return Value

Type: ITopicEndpoint
ITopicEndpoint
See Also