technomancy / swank-clojure

Swank/slime support for clojure
Eclipse Public License 1.0
412 stars 83 forks source link

Add functionality to cleanly shutdown the swank server #110

Closed tobias closed 12 years ago

tobias commented 12 years ago

This adds (stop-server), which shuts down the threads and sockets created by (start-server), allowing the server to be stopped without exiting the JVM.

Also included is an option to prevent a quit from slime from exiting the JVM, and prefixing some of the thread names with 'Swank' so their purpose is clearer in a thread list.

technomancy commented 12 years ago

Looks good; thanks.