Akka.Tests.Actor.ActorCellSpec.DummyAsyncActor.DummyAsyncActor C# (CSharp) Method

DummyAsyncActor() public method

public DummyAsyncActor ( AutoResetEvent autoResetEvent ) : System
autoResetEvent System.Threading.AutoResetEvent
return System
            public DummyAsyncActor(AutoResetEvent autoResetEvent)
            {
                ReceiveAsync<string>(async m =>
                {
                    await Task.Delay(500);
                    autoResetEvent.Set();
                });
            }
        }
ActorCellSpec.DummyAsyncActor