| 21 | ) |
| 22 | |
| 23 | type FunctionRuntime interface { |
| 24 | Call(e contube.Record) (contube.Record, error) |
| 25 | Stop() |
| 26 | } |
| 27 | |
| 28 | type FunctionRuntimeFactory interface { |
| 29 | NewFunctionRuntime(instance FunctionInstance) (FunctionRuntime, error) |
no outgoing calls
no test coverage detected