fix: device fields

This commit is contained in:
langhuihui
2024-10-24 10:30:07 +08:00
parent d89a33ad1e
commit 2cbd351a8b
68 changed files with 164 additions and 119 deletions

View File

@@ -295,6 +295,9 @@ func (task *Task) start() bool {
task.state = TASK_STATE_STARTED
task.startup.Fulfill(err)
for _, listener := range task.afterStartListeners {
if task.IsStopped() {
break
}
listener()
}
if task.IsStopped() {