Files
crawlab/core/interfaces/node_worker_service.go
2024-06-14 15:42:50 +08:00

12 lines
167 B
Go

package interfaces
import "time"
type NodeWorkerService interface {
NodeService
Register()
Recv()
ReportStatus()
SetHeartbeatInterval(duration time.Duration)
}