IHReliableTopic<T> Interface
Namespace: Hazelcast.DistributedObjects
Assembly: Hazelcast.Net.dll
The Reliable Topic has its own IHRingBuffer<TItem> to store events, and has its own thread to each subscription to process messages.
public interface IHReliableTopic<T> : IDistributedObject, IAsyncDisposable
Inherited Members
Type Parameters
T |
Methods
Name | Description |
---|---|
IsSubscription(Guid) | Checks the subscription that exists and runs by given id. |
PublishAsync(T, CancellationToken) | Publishes the message to all subscribers of this topic. |
SubscribeAsync(Action<ReliableTopicEventHandlers<T>>, ReliableTopicEventHandlerOptions, object) | Subscribes to this reliable topic. |
UnsubscribeAsync(Guid) | Stops receiving messages for the given message listener. |