Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
stop(port, host = DEFAULT_HOST)
public
Stop the server running on the given port, bound to the given host
port |
port, as a Fixnum, of the server to stop
|
host |
host on which to find the server to stop
|
# File lib/gserver.rb, line 97
def GServer.stop(port, host = DEFAULT_HOST)
@@servicesMutex.synchronize {
@@services[host][port].stop
}
end