Akka.Tests.Performance.Actor.Pattern.AskSpec.Setup C# (CSharp) Method

Setup() private method

private Setup ( BenchmarkContext context ) : void
context NBench.BenchmarkContext
return void
        public void Setup(BenchmarkContext context)
        {
            _sys = ActorSystem.Create("AskSpec");
            _target = _sys.ActorOf(Props.Create(() => new EmptyActor()));
            _askThroughputCounter = context.GetCounter(AskThroughputCounterName);
        }