You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Vert.x 3.8.0, the Verticle method void start(Future<Void> startFuture) is deprecated in favor of void start(Promise<Void> startPromise). However, if you override that in a Verticle that you want to inject via vertx-guice, the start method will not be called, because GuiceVerticleLoader overrides void start(Future<Void> startFuture), and directly calls the same start method on your Verticle.
The text was updated successfully, but these errors were encountered:
In Vert.x 3.8.0, the Verticle method
void start(Future<Void> startFuture)
is deprecated in favor ofvoid start(Promise<Void> startPromise)
. However, if you override that in a Verticle that you want to inject via vertx-guice, thestart
method will not be called, becauseGuiceVerticleLoader
overridesvoid start(Future<Void> startFuture)
, and directly calls the samestart
method on your Verticle.The text was updated successfully, but these errors were encountered: