The documentation includes the following example:
QueuedThreadPool worker = new QueuedThreadPool();
worker.setReservedThreads(0);
worker.setVirtualThreadsExecutor(Executors.newVirtualThreadPerTaskExecutor());
install(new JettyServer(worker));
However, there is no JettyServer constructor taking a thread pool at present.
Are we supposed to be doing this a different way now?