Squishy.Network.Throttle.Remove C# (CSharp) Method

Remove() public method

Removes an existent Connection from this throttle or does nothing if the connection does not belong to this throttle.
public Remove ( Connection con ) : void
con Connection
return void
        public void Remove(Connection con)
        {
            lock (conLock)
            {
                Remove(cons.IndexOf(con));
            }
        }

Same methods

Throttle::Remove ( int index ) : void