JournaledGrain<TGrainState,TEventBase> 构造函数

定义

重载

JournaledGrain<TGrainState,TEventBase>()

初始化 JournaledGrain<TGrainState,TEventBase> 类的新实例。

JournaledGrain<TGrainState,TEventBase>(IGrainIdentity, IGrainRuntime)

此构造函数特别适用于单元测试,其中测试代码可以创建 Grain 并将 IGrainIdentity、IGrainRuntime 和 State 替换为测试双精度 (模拟/存根) 。

JournaledGrain<TGrainState,TEventBase>()

Source:
JournaledGrain.cs

初始化 JournaledGrain<TGrainState,TEventBase> 类的新实例。

protected JournaledGrain ();
Protected Sub New ()

适用于

JournaledGrain<TGrainState,TEventBase>(IGrainIdentity, IGrainRuntime)

Source:
JournaledGrain.cs

此构造函数特别适用于单元测试,其中测试代码可以创建 Grain 并将 IGrainIdentity、IGrainRuntime 和 State 替换为测试双精度 (模拟/存根) 。

protected JournaledGrain (Orleans.Core.IGrainIdentity identity, Orleans.Runtime.IGrainRuntime runtime);
new Orleans.EventSourcing.JournaledGrain<'GrainState, 'EventBase (requires 'GrainState : null and 'GrainState : (new : unit -> 'GrainState) and 'EventBase : null)> : Orleans.Core.IGrainIdentity * Orleans.Runtime.IGrainRuntime -> Orleans.EventSourcing.JournaledGrain<'GrainState, 'EventBase (requires 'GrainState : null and 'GrainState : (new : unit -> 'GrainState) and 'EventBase : null)>
Protected Sub New (identity As IGrainIdentity, runtime As IGrainRuntime)

参数

identity
IGrainIdentity
runtime
IGrainRuntime

适用于