| 33 | ) |
| 34 | |
| 35 | type FuncRuntime struct { |
| 36 | api.FunctionRuntime |
| 37 | Name string |
| 38 | instance api.FunctionInstance |
| 39 | ctx context.Context |
| 40 | status *proto.FunctionStatus |
| 41 | readyOnce sync.Once |
| 42 | readyCh chan error |
| 43 | input chan contube.Record |
| 44 | output chan contube.Record |
| 45 | stopFunc func() |
| 46 | processing atomic.Bool |
| 47 | log *common.Logger |
| 48 | } |
| 49 | |
| 50 | type Status int32 |
| 51 |
nothing calls this directly
no outgoing calls
no test coverage detected