![]() |
Diffusion .NET API
5.9.4
|
Represents a mechanism for dispatching updates. More...
Public Member Functions | |
void | Update< TContext > (ConversationId cid, string topic, IUpdate update, TContext context, ITopicUpdaterUpdateContextCallback< TContext > callback) |
Send an update for this updater/topic source. More... | |
void | Set< TContext > (ConversationId cid, string topic, byte[] value, TContext context, ITopicUpdaterUpdateContextCallback< TContext > callback) |
Send a value for this updater/topic source. More... | |
void | DeltaUpdate< TContext > (ConversationId cid, string topic, int deltaId, byte[] delta, TContext context, ITopicUpdaterUpdateContextCallback< TContext > callback) |
Send a delta update for this updater/topic source. More... | |
Represents a mechanism for dispatching updates.
void PushTechnology.ClientInterface.Client.Features.Control.Topics.UpdateSourceDispatchers.IUpdateSourceDispatcher.DeltaUpdate< TContext > | ( | ConversationId | cid, |
string | topic, | ||
int | deltaId, | ||
byte[] | delta, | ||
TContext | context, | ||
ITopicUpdaterUpdateContextCallback< TContext > | callback | ||
) |
Send a delta update for this updater/topic source.
Since 5.8
TContext | The context type. |
cid | The conversation id. |
topic | The topic path. |
deltaId | The delta id. |
delta | The delta. |
context | The context to supply to callback notifications. May be null. |
callback | The callback for notifications on the update request. |
Implemented in PushTechnology.ClientInterface.Client.Features.Control.Topics.UpdateSourceDispatchers.UpdateSourceDispatcher.
void PushTechnology.ClientInterface.Client.Features.Control.Topics.UpdateSourceDispatchers.IUpdateSourceDispatcher.Set< TContext > | ( | ConversationId | cid, |
string | topic, | ||
byte[] | value, | ||
TContext | context, | ||
ITopicUpdaterUpdateContextCallback< TContext > | callback | ||
) |
Send a value for this updater/topic source.
Since 5.8
TContext | The context type. |
cid | The conversation id. |
topic | The topic path. |
value | The value. |
context | The context to supply to callback notifications. May be null. |
callback | The callback for notifications on the update request. |
Implemented in PushTechnology.ClientInterface.Client.Features.Control.Topics.UpdateSourceDispatchers.UpdateSourceDispatcher.
void PushTechnology.ClientInterface.Client.Features.Control.Topics.UpdateSourceDispatchers.IUpdateSourceDispatcher.Update< TContext > | ( | ConversationId | cid, |
string | topic, | ||
IUpdate | update, | ||
TContext | context, | ||
ITopicUpdaterUpdateContextCallback< TContext > | callback | ||
) |
Send an update for this updater/topic source.
TContext | The context type. |
cid | The conversation id. |
topic | The topic path. |
update | The update. |
context | The context to supply to callback notifications. May be null. |
callback | The callback for notifications on the update request. |
Implemented in PushTechnology.ClientInterface.Client.Features.Control.Topics.UpdateSourceDispatchers.UpdateSourceDispatcher.