Exemplo n.º 1
0
        public void Init()
        {
            if (_nagglingEnabled)
            {
                _msgQueue       = new Alachisoft.NCache.Common.DataStructures.Queue();
                _priNagglingMgr = new NagglingManager(this, this.PrimaryClientSocket, _msgQueue, _nagglingSize, _syncLock);
                _priNagglingMgr.Start();

                if (SupportDualSocket)
                {
                    _secNagglingMgr = new NagglingManager(this, this.SecondaryClientSocket, _msgQueue, _nagglingSize, _syncLock);
                    _secNagglingMgr.Start();
                }
            }

            StartThread();
        }
Exemplo n.º 2
0
        public void Init()
        {
            if (_nagglingEnabled)
            {
                _msgQueue = new Alachisoft.NCache.Common.DataStructures.Queue();
                _priNagglingMgr = new NagglingManager(this, this.PrimaryClientSocket, _msgQueue, _nagglingSize, _syncLock);
                _priNagglingMgr.Start();

                if (SupportDualSocket)
                {
                    _secNagglingMgr = new NagglingManager(this, this.SecondaryClientSocket, _msgQueue, _nagglingSize, _syncLock);
                    _secNagglingMgr.Start();
                }
            }

            StartThread();
        }