Interface IFlushCacheAndBroadcastPlugin
Namespace: SuperOffice.Data.Cache
Assembly: SoDataBase.dll
Syntax
public interface IFlushCacheAndBroadcastPlugin : IPlugin
Methods
FlushAndBroadcast(IEnumerable<String>)
Flushes the caches and broadcast
Declaration
void FlushAndBroadcast(IEnumerable<string> cacheNames)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<String> | cacheNames | Caches to flush. Input can be technical name of the cache, or it can be the table name from the database and it'll do a lookup to find all the caches that's associated with that table and flush. |
FlushAndBroadcast(String[])
Flushes the caches and broadcast
Declaration
void FlushAndBroadcast(params string[] cacheNames)
Parameters
Type | Name | Description |
---|---|---|
String[] | cacheNames | Caches to flush. Input can be technical name of the cache, or it can be the table name from the database and it'll do a lookup to find all the caches that's associated with that table and flush. |
Extension Methods
EnumUtil.MapEnums<From, To>(From)