HitProxy.Connection.CachedServer.Remove C# (CSharp) Method

Remove() public method

Remove a connection from the ServerCache This will trigger an event allowing pending connections to start.
public Remove ( CachedConnection connection ) : void
connection CachedConnection /// The connection to remove ///
return void
        public void Remove(CachedConnection connection)
        {
            lock (connections) {
                connections.Remove (connection);
            }
            manager.releasedConnection.Set ();
        }