Interface IMessagingService
This interface contains properties and methods required for Messaging Service.
Namespace:
Assembly: Alachisoft.NCache.Client.dll
Syntax
public interface IMessagingService
Methods
| Name | Description |
|---|---|
| CreateTopic(String, TopicPriority) | Creates and retrieves the topic instance against the specified topic name. |
| DeleteTopic(String) | Deletes the topic instance against the specified topic name. |
| DeleteTopicAsync(String) | Deletes the topic instance asynchronously, against the specified topic name. |
| GetTopic(String, TopicSearchOptions) | Retrieves the topic instance against the TopicSearchOptions and provided name or pattern. |
| RegisterCacheNotification(CacheDataNotificationCallback, EventType, EventDataFilter) | Registers cache notification EventType of type item added, updated or removed against specified keys in cache. |
| RegisterCacheNotification(IEnumerable<String>, CacheDataNotificationCallback, EventType, EventDataFilter) | Registers cache notification EventType of type item added, updated or removed against specified keys in cache. |
| RegisterCacheNotification(String, CacheDataNotificationCallback, EventType, EventDataFilter) | Registers cache notification EventType of type item added, updated or removed against specified key in cache. |
| UnRegisterCacheNotification(CacheEventDescriptor) | Unregisters a cache-level event that may have been registered. |
| UnRegisterCacheNotification(IEnumerable<String>, CacheDataNotificationCallback, EventType) | Unregisters cache notification against specified keys in cache. |
| UnRegisterCacheNotification(String, CacheDataNotificationCallback, EventType) | Unregisters the Alachisoft.NCache.Client.CacheItemUpdatedCallback already registered for the specified key. |