mirror of
https://gitee.com/dotnetchina/anno.core.git
synced 2025-12-06 08:48:50 +08:00
15 lines
375 B
C#
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);
|
|
}
|
|
}
|