Start starts the module.
()
| 26 | |
| 27 | // Start starts the module. |
| 28 | func (i *Interception) Start() error { |
| 29 | defer func() { i.EventStartStopState.Submit(isStarted.Load()) }() |
| 30 | return start() |
| 31 | } |
| 32 | |
| 33 | // Stop stops the module. |
| 34 | func (i *Interception) Stop() error { |