示例#1
0
 public ActorMaterializerSession(ActorMaterializerImpl materializer, IModule topLevel, Attributes initialAttributes, Func <GraphInterpreterShell, IActorRef> subflowFuser)
     : base(topLevel, initialAttributes)
 {
     _materializer = materializer;
     _subflowFuser = subflowFuser;
     _flowName     = _materializer.CreateFlowName();
 }
 public SubFusingActorMaterializerImpl(ActorMaterializerImpl delegateMaterializer, Func <GraphInterpreterShell, IActorRef> registerShell)
 {
     _delegateMaterializer = delegateMaterializer;
     _registerShell        = registerShell;
 }