I'm using jetty 9.1.0, embedded, and would like to set both port and ThreadPool. I see a constructor for each, but don't see how to use one of those, and then any way to set the other.
doing this
Server server = new Server(9090);
or
Server server = new Server(new QueuedThreadPool(100, 10));
but there's no setPort or setThreadPool on Server.