Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
- consolidate documentation in a single file (README for now)
- remove ModuleGen useFutures/checkCallbackDeprecation internal usage since it is now useless
  • Loading branch information
vietj committed Jan 24, 2024
1 parent 7162006 commit b247090
Show file tree
Hide file tree
Showing 20 changed files with 230 additions and 1,195 deletions.
2 changes: 1 addition & 1 deletion vertx-codegen-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ The module declares also whether the module uses callback style or future style
is used, to declare a future style instead use
```
@ModuleGen(name = "acme", groupPackage="com.acme", useFutures=true)
@ModuleGen(name = "acme", groupPackage="com.acme")
package com.acme.myservice;
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,15 @@
String groupPackage();

/**
* @return {@code true} when asynchronous operations are declared by {@code Future<T>} returning signatures, {@code false}
* when they are declared by {@code Handler<AsyncResult<T>>} callback signatures
* Shall be removed in the future.
*/
@Deprecated
boolean useFutures() default false;

/**
* Shall be removed in the future.
*/
@Deprecated
boolean checkCallbackDeprecation() default false;

}
Loading

0 comments on commit b247090

Please sign in to comment.