vertx.repl documentation
Functions for managing nREPLs within a Vert.x container.
start
(start)(start port)(start port host & {:as opts})
Starts an nREPL server, asynchrously.
port defaults to 0, which means "any available port". host
defaults to "127.0.0.1". Returns an id for the server that can be
passed to stop to shut it down. the repl will automatically be
shutdown when the verticle that started it is stopped.
You can optionally pass one of the following keyword arguments:
:handler A fully-qualified symbol pointing to your own nrepl handler
:middleware A collection of middlewares to apply to the default handler.
Each can be a fully-qualified symbol, a var, or an inline
function.stop
(stop id)
Stops the nREPL server with the given id, asynchronously.