增加RCU上离线功能,能耗双通道
This commit is contained in:
20
BLWLogProduce/Models/RCUAnyDataComming.cs
Normal file
20
BLWLogProduce/Models/RCUAnyDataComming.cs
Normal 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();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user