增加RCU上离线功能,能耗双通道

This commit is contained in:
2026-01-15 17:32:26 +08:00
parent b746a1da1a
commit 10bf712006
148 changed files with 8075 additions and 290 deletions

View File

@@ -0,0 +1,20 @@

namespace BLWLogProduce.Models
{
public class RCUAnyDataComming : Grain, CommonEntity.IRCUDataComing
{
public readonly IPersistentState<CommonEntity.OnOffLineData> _state;
public RCUAnyDataComming([PersistentState("anydata","redis-store")]IPersistentState<CommonEntity.OnOffLineData> state)
{
_state = state;
}
public ValueTask DataAccept()
{
throw new NotImplementedException();
}
}
}