vert-x3 / vertx-4-migration-guide

Migration to Vert.x 4 guide
https://vert-x3.github.io/vertx-4-migration-guide/index.html
20 stars 16 forks source link

Add note about removing Handler<AsyncResult<T>> from Future to migration guide. #59

Open LuboViluda opened 3 years ago

LuboViluda commented 3 years ago

Describe the feature

Vert.x Future extends Handler<AsyncResult>
Vert.x 3.9

Vert.x Future doesn't extend Handler<AsyncResult> in Vert.x 4.0 Vert.x 4.0

As the handle(AsyncResult asyncResult) method is missing this is a potentially breaking change.

Use cases