probe/service/CollectorService.go

39 lines
697 B
Go
Raw Normal View History

2018-04-17 14:11:13 +00:00
package service
import (
"reflect"
cda "git.loafle.net/commons/di-go/annotation"
cdr "git.loafle.net/commons/di-go/registry"
_ "git.loafle.net/overflow/commons-go/core/annotation"
)
var CollectorServiceType = reflect.TypeOf((*CollectorService)(nil))
func init() {
cdr.RegisterType(CollectorServiceType)
}
type CollectorService struct {
cda.TypeAnnotation `annotation:"@overflow:RPCService()"`
DataClientService *DataClientService `annotation:"@Inject()"`
}
func (s *CollectorService) InitService() error {
return nil
}
func (s *CollectorService) StartService() error {
return nil
}
func (s *CollectorService) StopService() {
}
func (s *CollectorService) DestroyService() {
}