Files
anno.core/src/Anno.EngineData/Cache/ICacheMiddleware.cs
2020-11-06 16:41:07 +08:00

15 lines
375 B
C#

using Anno.EngineData.Filters;
using System;
using System.Collections.Generic;
using System.Text;
namespace Anno.EngineData.Cache
{
public interface ICacheMiddleware : IFilterMetadata
{
bool TryGetCache(string key, out ActionResult actionResult);
void SetCache(string key, ActionResult actionResult);
void RemoveCache(string key);
}
}