Esempio n. 1
0
 public void Send(byte[] msg)
 {
     if (_clientId < 0)
     {
         return;
     }
     CppAdapter.SendMsg(_clientId, ref msg[0], msg.Length);
 }
Esempio n. 2
0
 public void Release()
 {
     if (_clientId < 0)
     {
         return;
     }
     CppAdapter.ReleaseClient(_clientId);
 }
Esempio n. 3
0
 public void Init(string ip, int port)
 {
     _delegate = new CppAdapter.QuoteCallBackDelegate(ClientCallBack);
     byte[] bip = System.Text.Encoding.UTF8.GetBytes(ip);
     _clientId = CppAdapter.CreateClient(ref bip[0], port, _delegate);
 }