GH-387 Added initial support for flexible function signatures

- Added support for simple POJO functions
- Added additional utility methods
This commit is contained in:
Oleg Zhurakousky
2019-08-22 16:58:18 +02:00
parent 971caf184d
commit 7611cba69e
5 changed files with 317 additions and 11 deletions

View File

@@ -95,7 +95,7 @@ public class SingletonTests {
}
static class MySupplier implements Supplier<Flux<String>> {
public static class MySupplier implements Supplier<Flux<String>> {
@Override
public Flux<String> get() {