public ChannelTest(ITestOutputHelper output)
     : base(output: output)
 {
     _outputSource = new XunitOutputLogger.Source { Output = output, Lock = new object(), Active = true };
     _testEndPoint = s_lastTestEndPoint;
     s_lastTestEndPoint.Port += 2;
     _environment = new EntryActorEnvironment();
 }
 public ChannelTest(ITestOutputHelper output)
     : base(output: output)
 {
     _outputSource = new XunitOutputLogger.Source {
         Output = output, Lock = new object(), Active = true
     };
     _testEndPoint            = s_lastTestEndPoint;
     s_lastTestEndPoint.Port += 2;
     _environment             = new EntryActorEnvironment();
 }
 public EntryActor(EntryActorEnvironment environment, ActorBoundChannelRef channel)
 {
     _environment = environment;
     _channel = channel.WithRequestWaiter(this);
 }
 public EntryActor(EntryActorEnvironment environment, ActorBoundChannelRef channel)
 {
     _environment = environment;
     _channel     = channel.WithRequestWaiter(this);
 }