Class FileCacheBase
The base file cache class.
Inherited Members
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public abstract class FileCacheBase : MemoryCache, ICacheStorage
Constructors
FileCacheBase()
Initializes a new instance of the FileCacheBase class.
Declaration
protected FileCacheBase()
Fields
CachePathProperty
Identifies the CachePath dependency property.
Declaration
public static readonly DependencyProperty CachePathProperty
Field Value
System.
|
MaxExpirationTimeProperty
Identifies the MaxExpiresTime dependency property.
Declaration
public static readonly DependencyProperty MaxExpirationTimeProperty
Field Value
System.
|
MaxSizeProperty
Identifies the MaxSize dependency property.
Declaration
public static readonly DependencyProperty MaxSizeProperty
Field Value
System.
|
MinExpirationTimeProperty
Identifies the MinExpiresTime dependency property.
Declaration
public static readonly DependencyProperty MinExpirationTimeProperty
Field Value
System.
|
Properties
CachePath
Gets or sets the path to files for a storage. This is a dependency property.
Declaration
public string CachePath { get; set; }
Property Value
System.
|
MaxExpirationTime
Gets or sets the maximal expiration timespan for a file in cache. This is a dependency property.
Declaration
public TimeSpan MaxExpirationTime { get; set; }
Property Value
System.
|
MaxSize
Gets or sets the maximal cache size for a storage. Zero value specifies unlimited cache. This is a dependency property.
Declaration
public long MaxSize { get; set; }
Property Value
System.
|
MinExpirationTime
Gets or sets the minimal expiration timespan for a file in cache. This is a dependency property.
Declaration
public TimeSpan MinExpirationTime { get; set; }
Property Value
System.
|
Methods
CreateCacheStream(String)
Creates cache stream.
Declaration
protected abstract Stream CreateCacheStream(string fileName)
Parameters
System. File name. |
Returns
System. Stream to saving into cache. |
Dispose()
Dispose all resources are used by the FileCacheBase.
Declaration
public void Dispose()
GetFiles(String, String)
Obtains files.
Declaration
protected abstract string[] GetFiles(string cachePath, string fileMask)
Parameters
System. Cache path. |
System. File mask. |
Returns
System. Array of file names. |
GetFullFilePath(String)
Returns full file path.
Declaration
protected string GetFullFilePath(string fileName)
Parameters
System. File name. |
Returns
System. Full file path. |
Load(String)
Loads the file from the storage.
Declaration
public override Stream Load(string fileName)
Parameters
System. File name. |
Returns
System. Stream if the file exists and does not expired or null. |
Overrides
LoadAsync(String, Action<Byte[]>)
Loaded file from a cache to event arguments.
Declaration
public override void LoadAsync(string fileName, Action<byte[]> callback)
Parameters
System. File name. |
System. Callback which should be called to return tile if it is available or null. |
Overrides
LoadFileMetadata(String)
Loads file metadata.
Declaration
protected abstract MemoryCache.ICacheRecordMetadata LoadFileMetadata(string fileName)
Parameters
System. File name. |
Returns
Memory ICacheRecordMetadata implementation instance. |
OnCachePathChanged(String, String)
Calls when the cache path is changed.
Declaration
protected virtual void OnCachePathChanged(string oldValue, string newValue)
Parameters
System. Old path. |
System. New path. |
OnMaxSizeChanged()
Sets thread safety max size value.
Declaration
protected virtual void OnMaxSizeChanged()
OpenCacheStream(String)
Gets cache stream.
Declaration
protected abstract Stream OpenCacheStream(string fileName)
Parameters
System. File name. |
Returns
System. Stream to loading from cache. |
RemoveFile(String)
Removes file from cache storage.
Declaration
protected abstract void RemoveFile(string fileName)
Parameters
System. File name. |
Save(String, DateTime, Byte[])
Saves the file to the storage.
Declaration
public override void Save(string fileName, DateTime expirationDate, byte[] tile)
Parameters
System. File name. |
System. Expiration date. |
System. Byte array which is saved to the file. |
Overrides
SaveFileMetadata(MemoryCache.ICacheRecordMetadata)
Saves file metadata.
Declaration
protected abstract void SaveFileMetadata(MemoryCache.ICacheRecordMetadata cacheRecord)
Parameters
Memory Cache record metadata. |