Cleaned up Cloud Event support around reactive functions

Added reactive tests
Restructured CloudEventsFunctionInvocationHelper
This commit is contained in:
Oleg Zhurakousky
2020-12-11 14:34:32 +01:00
parent 096df2f22c
commit 30febe6bce
6 changed files with 206 additions and 55 deletions

View File

@@ -30,5 +30,7 @@ public interface FunctionInvocationHelper<I> {
I preProcessInput(I input, Object inputConverter);
I postProcessResult(I input, Object result);
I postProcessResult(Object result, String hint);
I postProcessResult(Object result, I input);
}