Change FunctionCatalog to key off Class<?>
Makes it possible to support other "function" types in the future. The user is always taking a risk with the lookup that the object returned has the generic type desired (but that hasn't changed with this commit). FunctionCatalog is a lot simpler as a result and also a lot more flexible.
This commit is contained in:
@@ -105,8 +105,8 @@ public class AzureSpringFunctionInitializer implements Closeable {
|
||||
this.function = context.getBean(name, Function.class);
|
||||
}
|
||||
else {
|
||||
Set<String> functionNames = this.catalog.getFunctionNames();
|
||||
this.function = this.catalog.lookupFunction(functionNames.iterator().next());
|
||||
Set<String> functionNames = this.catalog.getNames(Function.class);
|
||||
this.function = this.catalog.lookup(Function.class, functionNames.iterator().next());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user