At the moment as far as I understand when you call server.start() there is no way to get notified when the server is started. Is it possible to add one of the following features?
add a callback function to server.start() that gets called when the server has started
add an event (server.on("start")) that gets triggered when the server has started
@cleancoderocker Thanks for the suggestion.
New event server.on("start") added with JXM.io version 2.0.9.
Please remember, when the server is running in multithreaded mode this event occurs for each of the subthreads.
Source codes updated on jxm.
Documentation updated on jxdocs.
At the moment as far as I understand when you call server.start() there is no way to get notified when the server is started. Is it possible to add one of the following features?