Interface ITopicControlRemovalCallback

The callback interface for topic remove requests.

Inherited Members
ICallback.OnError(ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Topics
Assembly: Diffusion.Client.dll
Syntax
public interface ITopicControlRemovalCallback : ICallback
Remarks

Caution

Deprecated since 6.7. Methods that use callbacks are deprecated and will be removed in a future release. Use a Task instead.

Methods

OnTopicsRemoved()

Called to indicate that the requested remove operation has been actioned at the server.

Declaration
void OnTopicsRemoved()
Remarks

This does not mean that all intended topics have actually been removed. For example, if the caller did not have sufficient permissions to remove the topic(s).

Back to top