Akka.Streams.Tests.IO.TcpHelper.TestServer.TestServer C# (CSharp) Method

TestServer() public method

public TestServer ( EndPoint address, IActorRef probe ) : System
address System.Net.EndPoint
probe IActorRef
return System
            public TestServer(EndPoint address, IActorRef probe)
            {
                _probe = probe;
                Context.System.Tcp().Tell(new Tcp.Bind(Self, address, pullMode: true));
            }
TcpHelper.TestServer