public DiPerRequestActor(IDiTest di)
            {
                _di = di;

                Receive <GetCallCount>(count => Sender.Tell(_di.CallCount));
                ReceiveAny(o => _di.Call());
            }
 public BoundedStashActor(IDiTest di)
 {
     _di = di;
 }
Exemple #3
0
 public SampleRoutine(IDiTest test)
 {
     this.test = test;
 }