Exemplo n.º 1
0
 void OnApplicationQuit()
 {
     if (mSocket != null)
     {
         mSocket.Close();
     }
 }
Exemplo n.º 2
0
 public void Close()
 {
     if (mSocket != null)
     {
         mSocket.Close();
         mSocket = null;
     }
 }
Exemplo n.º 3
0
 void OnApplicationQuit()
 {
     if (mSocket != null)
     {
         Net.Instance.Send((int)ActionType.LeaveRoom, null, null);
         mSocket.Close();
     }
 }
Exemplo n.º 4
0
 private void OnApplicationQuit()
 {
     if (mSocket != null)
     {
         if (mSocket.mConnectStatusCallback != null)
         {
             mSocket.mConnectStatusCallback = null;
         }
         mSocket.Close();
     }
 }
Exemplo n.º 5
0
    public bool StopService()
    {
        serviceState = ENetServiceState.Stop;

        if (_socketCon != null)
        {
            _socketCon.Close();
            _socketCon = null;
        }

        return(true);
    }
Exemplo n.º 6
0
    //关闭连接
    public void Close()
    {
        setNetStatus(2);

        if (_socketCon != null)
        {
            _socketCon.Close();
            _socketCon = null;
        }

        SendreceiveManage.getInstance().clear();
    }
Exemplo n.º 7
0
    //关闭连接
    public void Close()
    {
        setNetStatus(2);

        if (_socketCon != null)
        {
            _socketCon.Close();
            _socketCon = null;
        }

        MessageQueueManage.getInstance().clearData();
    }
Exemplo n.º 8
0
    //关闭连接
    public void Close()
    {
        setNetStatus(2);

        if (_socketCon != null)
        {
            _socketCon.Close();
            _socketCon = null;
        }

        recDataQueue.Clear();
        sendMemory.Clear();
        pbnoCurr.setNull();
    }