Akka.Tests.IO.TcpIntegrationSpec.TestSetup.BindServer C# (CSharp) Method

BindServer() public method

public BindServer ( ) : void
return void
            public void BindServer()
            {
                var bindCommander = _spec.CreateTestProbe();
                bindCommander.Send(_spec.Sys.Tcp(), new Tcp.Bind(_bindHandler.Ref, _endpoint, options: BindOptions));
                bindCommander.ExpectMsg<Tcp.Bound>(); //TODO: check endpoint
            }