Hi, What is the preferred way to expose functions (FunctionTypes) between modules?
For example lets say i have the following maven modules: -> common -> statistics -> persister -> tradematching and I have some FunctionTypes in common and persister module that should be reach from all modules. common module is included everywhere so I thought about creating a helper class, CallableFunctions, and there specify the FunctionTypes that can be called from all modules. Is this the right approach or is there a better way? Regards Dan