public void Start()
 {
     this.Listener = new TcpListener(IPAddress.Loopback, this.Port);
     this.ListenThread = new Thread(new ThreadStart(listenForClients));
     this.Repl = new CSharpRepl();
     this.ListenThread.Start();
 }
Ejemplo n.º 2
0
		protected CSharpReplServer (bool isolated = true)
		{
			nmqContext = NetMQContext.Create ();
			repl = new CSharpRepl (isolated);
			cancellationTokenSource = new CancellationTokenSource ();
		}