Interface IRoutingSubscriptionRequestHandler

Handler for routing subscription requests registered with the older, callback-based AddRoutingSubscriptionHandler(String, IRoutingSubscriptionRequestHandler) method.

Inherited Members
ITopicTreeHandler.OnActive(String, IRegisteredHandler)
ITopicTreeHandler.OnClose(String)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Topics
Assembly: Diffusion.Client.dll
Syntax
public interface IRoutingSubscriptionRequestHandler : ITopicTreeHandler

Methods

OnSubscriptionRequest(IRoutingSubscriptionRequest)

A request to subscribe to a specific routing topic.

Declaration
void OnSubscriptionRequest(IRoutingSubscriptionRequest request)
Parameters
Type Name Description
IRoutingSubscriptionRequest request

The request, which must be replied to or deferred.

Back to top