Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有一个 Vertx 实例并在其上部署了许多 Verticle,多次调用方法 .deployVerticle() ,会在同一个事件循环中运行,还是在不同的事件循环中运行?
它们将使用循环算法部署在所有可用的事件循环中。因此,如果您有四个事件循环线程和八个要部署的 Verticle,那么每个事件循环线程最终将有两个 Verticle。