Won't Fix
Details
Assignee
Chas EmerickChas EmerickReporter
Hugo DuncanHugo DuncanAffects versions
Priority
Major
Details
Details
Assignee
Chas Emerick
Chas EmerickReporter
Hugo Duncan
Hugo DuncanAffects versions
Priority

Created October 8, 2012 at 7:24 PM
Updated June 26, 2019 at 3:52 AM
Resolved June 26, 2019 at 3:52 AM
ritz re-uses some of nrepl's private functions to avoid duplication. The uses are listed below.
Would it be possible to make these functions public? More subjectively, it might also be worth considering factoring out the session functionality into it's own namespace (including msg and possibly queue-eval), so the functionality is not split across the session middleware and the interruptible-eval middleware.
The debug nrepl server:
https://github.com/pallet/ritz/blob/develop/nrepl/src/ritz/nrepl.clj#L189
This uses clojure.tools.nrepl.middleware.session/create-session and clojure.tools.nrepl.middleware.session/session-out
ritz provides an eval op that tracks source forms:
https://github.com/pallet/ritz/blob/develop/nrepl-middleware/src/ritz/nrepl/middleware/tracking_eval.clj
This uses clojure.tools.nrepl.middleware.interruptible-eval/queue-eval and clojure.tools.nrepl.middleware.interruptible-eval/configure-executor