go:generate mockgen -destination=../mock/engine.go -package=mock -source=engine.go Engine
| 41 | //go:generate mockgen -destination=../mock/engine.go -package=mock -source=engine.go Engine |
| 42 | |
| 43 | type Engine interface { |
| 44 | Start() |
| 45 | ReportAndDesire() error |
| 46 | GetServiceLog(ctx *routing.Context) error |
| 47 | Collect(ns string, isSys bool, desire specv1.Desire) specv1.Report |
| 48 | Close() |
| 49 | } |
| 50 | |
| 51 | // pipes: remote debugging of the routing table between the router and the channel. key={ns}_{name}_{container} |
| 52 | type engineImpl struct { |
no outgoing calls
no test coverage detected