public CAClient(int udpReceiverPort)
 {
     Udp        = DataPipe.CreateClientUdp(this, udpReceiverPort);
     Searcher   = new Searcher(this);
     echoThread = new Thread(Echoer);
     echoThread.IsBackground = true;
     echoThread.Start();
 }
Exemplo n.º 2
0
        // Creates a new epics client

        public CAClient( )
        {
            Udp        = DataPipe.CreateClientUdp(this);
            Searcher   = new Searcher(this);
            echoThread = new Thread(Echoer)
            {
                IsBackground = true
            };
            echoThread.Start();
        }