ContextFactory.CreateSubscriberEndpoint Method

Solclient

ContextFactoryCreateSubscriberEndpoint Method
version: 7.2.1.27
Creates a Subscriber Endpoint.

A Subscriber Endpoint is a holding area which allows a subscriber to attract Guaranteed messages matching the subscriptions set registered for that subscriber.

Subscriber Endpoints are durable. Therefore matching messages can still accumulate on the Subscriber Endpoint even if the subscriber that added the subscriptions is offline.

To consume messages from the given Subscriber Endpoint, client applications must create a Flow using CreateFlow(...) on ISession passing in the corresponding ISubscriberEndpoint Endpoint. There is one Subscriber Endpoint for each provisioned subscriber on the appliance.

For SolOS Version 4.4, Subscriber Endpoints are only supported on appliances with a Content Routing Blade (CRB).

Namespace: SolaceSystems.Solclient.Messaging
Assembly: SolaceSystems.Solclient.Messaging (in SolaceSystems.Solclient.Messaging.dll) Version: 7.2.1.27 (7.2.1.27)
Syntax
public ISubscriberEndpoint CreateSubscriberEndpoint(
	ISession associatedSession
)
Public Function CreateSubscriberEndpoint ( 
	associatedSession As ISession
) As ISubscriberEndpoint
public:
ISubscriberEndpoint^ CreateSubscriberEndpoint(
	ISession^ associatedSession
)

Parameters

associatedSession
Type: SolaceSystems.Solclient.MessagingISession

Return Value

Type: ISubscriberEndpoint
ISubscriberEndpoint
See Also