0

我有一个名为ClientSocketService的类,它在实例化时会创建一个后台线程并开始通过套接字进行侦听。

ClientSocketService.cs

public ClientSocketService(Socket sock) : this()
    {
        //Assign the Incomign socket to the Socket variable.
        _serviceSocket = sock;

        //Get and assing the network stream for the Socket.
        this._nStream = new NetworkStream(sock);

        //Initialize the Reciever Thread.
        RecieverThread = new BackgroundWorker();
        RecieverThread.DoWork += new DoWorkEventHandler(RecieverThread_StartListening);
        RecieverThread.RunWorkerAsync();
    }

我在另一个名为 server 的类中创建此类的对象,然后在创建类对象之后,另一个方法将该类添加到 Collection 并引发 ClientAdded 事件处理程序。

private void AcceptClientSocket(Socket sock)
    {            
        //Initialize new ClientSocketService.            
        ClientSocketService csservice = new ClientSocketService(sock);

        //Add the client to the List
        this.AddClientToList(csservice);
    }
    /// <summary>
    /// Adds the Client to the List.
    /// </summary>
    /// <param name="csservice"></param>
    private void AddClientToList(ClientSocketService csservice)
    {
        //Check for any abnormal Disconnections
        this.CheckAbnormalDC(csservice);
        //Ad the ClientSocketService to the List.
        this._clientsocketservices.Add(csservice);
        //Raise the Client Added Event Handler.
        this.OnClientAdded(new ClientSocketServiceEventArgs(csservice));
    }

我现在面临的问题是 ClientSocketService 类中的后台工作程序在调用所有添加的事件处理程序事件后启动。

任何帮助都感激不尽。

谢谢,

4

2 回答 2

0

看起来您有多个线程正在运行,并且您需要在这些线程之间进行某种同步。例如:

  • 主线程
  • 线程1
  • 线程2

在这种情况下,即使您Thread1在之前开始Thread2,也不能保证线程将按顺序执行工作。它可能工作一次,它可能不会工作其他时间。

有几个选项可用于同步线程,看看

于 2013-10-23T11:24:13.920 回答
0

我通过在 clientsocketservice 类中添加一个新的ClientConnected事件处理程序并订阅它来解决它。

现在,当调用 ClientConnectedEventHandler 时,我将 ClientSocketService 对象添加到列表中。通过这种方式,我可以在将客户端添加到列表之前进行一些其他初始化/授权工作。

感谢大家的帮助。

于 2013-10-24T04:45:24.990 回答