EdgexAgent/device-gps-go/pkg/interfaces/manager.go
2025-07-10 20:30:06 +08:00

16 lines
419 B
Go

//
// Copyright (C) 2021 IOTech Ltd
//
// SPDX-License-Identifier: Apache-2.0
package interfaces
type AutoEventManager interface {
// StartAutoEvents starts all the AutoEvents of the device service
StartAutoEvents()
// RestartForDevice restarts all the AutoEvents of the specific device
RestartForDevice(name string)
// StopForDevice stops all the AutoEvents of the specific device
StopForDevice(name string)
}