Esempio n. 1
0
        void STTConnect(STTRecord msg)
        {
            if (sTTStatus == STTStatus.None || sTTStatus == STTStatus.RecordEnd)
            {
                if (socketThread != null)
                {
                    socketThread = null;
                }

                socketThread = new Thread(new ThreadStart(SocketConnect));
                socketThread.Start();
            }
        }
Esempio n. 2
0
 void STTConnect(STTRecord msg)
 {
     StartCoroutine(SocketConnectTry());
 }