vertx.repl documentation
Functions for managing nREPLs within a Vert.x container.
start-repl
(start-repl)
(start-repl port)
(start-repl port host)
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-repl to shut it down. the repl will automatically be
shutdown when the verticle that started it is stopped.
stop-repl
(stop-repl id)
Stops the nREPL server with the given id, asynchronously.