Backend to act as a UNIX domain socket server.
Free up resources used by the backend.
# File lib/thin/backends/unix_server.rb, line 29 29: def close 30: remove_socket_file 31: end
Connect the server
# File lib/thin/backends/unix_server.rb, line 15 15: def connect 16: at_exit { remove_socket_file } # In case it crashes 17: EventMachine.start_unix_domain_server(@socket, UnixConnection, &method(:initialize_connection)) 18: # HACK EventMachine.start_unix_domain_server doesn't return the connection signature 19: # so we have to go in the internal stuff to find it. 20: @signature = EventMachine.instance_eval{@acceptors.keys.first} 21: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.