Enum SubscriptionMode

Indicates the mode of subscription that a client requires to a topic.

Namespace: PushTechnology.ClientInterface.Client.Enums
Assembly: Diffusion.Client.dll
Syntax
public enum SubscriptionMode : int

Fields

Name Description
IN

The client can send content to the topic but will not receive content from the topic.

IO

The client can both send content to the topic and receive content from the topic. This is the default mode of operation for a topic subscription.

OUT

The client can receive content from the topic but cannot send content to the topic.

Back to top