Closed cdekok closed 3 years ago
it is not clear what you are experiencing here, there is a Vertx.clusteredVertx(options)
that returns a future type:
static Future<Vertx> clusteredVertx(VertxOptions options) {
Promise<Vertx> promise = Promise.promise();
clusteredVertx(options, promise);
return promise.future();
}
you should call await()
on this Future
can you provide a reproducer project ?
Oh your right sorry I guess it was some gradle cache it compiles correctly now.
Version
4.0.0
Context
clusteredVertxAwait is marked as deprecated
But there is no clusteredVertx function to await on, the rest of the functions do have an implementation to await.
Do you have a reproducer?
Result..