File size: 211 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
package app
// Trigger will start a processing cycle (normally ever ~5s)
func (app *App) Trigger() {
_ = app.mgr.WaitForStartup(app.LogBackgroundContext())
if app.Engine != nil {
app.Engine.Trigger()
}
}
|