| 36 | ) |
| 37 | |
| 38 | type EventBus struct { |
| 39 | mu sync.Mutex |
| 40 | log logr.Logger |
| 41 | Spec *ofevent.NatsStreamingSpec |
| 42 | Metadata map[string]interface{} |
| 43 | } |
| 44 | |
| 45 | func NewNatsStreamingEventBus(log logr.Logger, spec *ofevent.NatsStreamingSpec) event.OpenFunctionEventBus { |
| 46 | eb := &EventBus{} |
nothing calls this directly
no outgoing calls
no test coverage detected