package io.vertx.example.shell.run_service_telnet; import io.vertx.core.AbstractVerticle; import io.vertx.example.util.Runner; import io.vertx.ext.shell.ShellService; import io.vertx.ext.shell.ShellServiceOptions; import io.vertx.ext.shell.term.TelnetTermOptions; /** * @author <a href="mailto:julien@julienviet.com">Julien Viet</a> */ public class RunShell extends AbstractVerticle { // Convenience method so you can run it in your IDE public static void main(String[] args) { Runner.runExample(RunShell.class); } @Override public void start() throws Exception { ShellService service = ShellService.create(vertx, new ShellServiceOptions().setTelnetOptions( new TelnetTermOptions().setHost("localhost").setPort(3000) )); service.start(); } }