Interface ITopicNotificationListener

The listener for topic notifications.

Inherited Members
IStream.OnClose()
ICallback.OnError(ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Topics
Assembly: Diffusion.Client.dll
Syntax
public interface ITopicNotificationListener : IStream, ICallback

Methods

OnDescendantNotification(String, NotificationType)

Notification for an immediate descendant of a selected topic path.

Declaration
void OnDescendantNotification(string topicPath, NotificationType type)
Parameters
Type Name Description
System.String topicPath

The path of the immediate descendant that is not selected.

NotificationType type

The type of notification.

Remarks

This notifies the presence or absence of a descendant topic that may subsequently be explicitly selected.

OnTopicNotification(String, ITopicSpecification, NotificationType)

Notification for a selected topic.

Declaration
void OnTopicNotification(string topicPath, ITopicSpecification specification, NotificationType type)
Parameters
Type Name Description
System.String topicPath

The path of the topic that this notification is for.

ITopicSpecification specification

The specification of the topic that this notification is for.

NotificationType type

The type of notification.

Back to top