![]() |
Diffusion .NET Classic API - Core and Common
5.9.4
|
Methods relating to creating and sending messages More...
Public Member Functions | |
ITopicMessage | CreateDeltaMessage (string topic) |
Create a delta topic message. More... | |
ITopicMessage | CreateDeltaMessage (string topic, int capacity) |
Create a delta message with a default capacity. More... | |
ITopicMessage | CreateLoadMessage (string topic) |
Create a topic load message. More... | |
ITopicMessage | CreateLoadMessage (string topic, int capacity) |
Create a topic load message with a default capacity. More... | |
void | Send (MessageBase message) |
Send a topic message. More... | |
void | Subscribe (params string[] topics) |
Subscribe to topics. More... | |
void | Subscribe (TopicSet topics) |
Subscribe to a topic given a TopicSet. More... | |
void | Unsubscribe (params string[] topics) |
Unsubscribe from topics. More... | |
void | Unsubscribe (TopicSet topics) |
Unsubscribe from topics given a TopicSet. More... | |
Methods relating to creating and sending messages
ITopicMessage PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.CreateDeltaMessage | ( | string | topic | ) |
Create a delta topic message.
topic | The topic name. |
ITopicMessage PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.CreateDeltaMessage | ( | string | topic, |
int | capacity | ||
) |
Create a delta message with a default capacity.
topic | The topic name. |
capacity | The default message capacity. |
ITopicMessage PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.CreateLoadMessage | ( | string | topic | ) |
Create a topic load message.
topic | The topic name. |
ITopicMessage PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.CreateLoadMessage | ( | string | topic, |
int | capacity | ||
) |
Create a topic load message with a default capacity.
topic | The topic name. |
capacity | The default message capacity. |
void PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.Send | ( | MessageBase | message | ) |
Send a topic message.
message | The message to send. |
Implemented in PushTechnology.DiffusionCore.Connection.Interfaces.IDiffusionClientConnector.
void PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.Subscribe | ( | params string[] | topics | ) |
Subscribe to topics.
topics | One or more topic names, separated by a comma. |
void PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.Subscribe | ( | TopicSet | topics | ) |
Subscribe to a topic given a TopicSet.
topics | The topics to subscribe to. |
void PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.Unsubscribe | ( | params string[] | topics | ) |
Unsubscribe from topics.
topics | One or more topic names, separated by a comma. |
void PushTechnology.DiffusionCore.Connection.IDiffusionMessagingConnector.Unsubscribe | ( | TopicSet | topics | ) |
Unsubscribe from topics given a TopicSet.
topics | The topics to subscribe to. |