Esempio n. 1
0
        public override void Dispose()
        {
            if (this.poller == null)
            {
                return;
            }

            foreach (long id in this.idChannels.Keys.ToArray())
            {
                UChannel channel = this.idChannels[id];
                channel.Dispose();
            }

            this.poller = null;
        }
Esempio n. 2
0
 /// <summary>
 /// 只能做client
 /// </summary>
 public UService()
 {
     this.poller = new UPoller();
 }
Esempio n. 3
0
 /// <summary>
 /// 即可做client也可做server
 /// </summary>
 public UService(string host, int port)
 {
     this.poller = new UPoller(host, (ushort)port);
 }
Esempio n. 4
0
 /// <summary>
 /// 即可做client也可做server
 /// </summary>
 public UService(IPEndPoint ipEndPoint)
 {
     this.poller = new UPoller(ipEndPoint.Address.ToString(), (ushort)ipEndPoint.Port);
 }
Esempio n. 5
0
 public USocket(UPoller poller)
 {
     this.poller = poller;
 }
Esempio n. 6
0
 public USocket(IntPtr peerPtr, UPoller poller)
 {
     this.poller  = poller;
     this.PeerPtr = peerPtr;
 }