This commit is contained in:
crusader 2018-03-23 17:10:04 +09:00
parent b040fbf794
commit bf761f7a63

View File

@ -2,7 +2,6 @@ package service
import (
"reflect"
"sync"
cda "git.loafle.net/commons_go/di/annotation"
cdr "git.loafle.net/commons_go/di/registry"
@ -17,12 +16,8 @@ type ProbeService struct {
cda.TypeAnnotation `annotation:"@overFlow:Service()"`
RPCServlet cr.Servlet
sendMtx sync.RWMutex
}
func (ps *ProbeService) Send(method string, params ...interface{}) error {
ps.sendMtx.RLock()
defer ps.sendMtx.RUnlock()
return ps.RPCServlet.Send(method, params...)
}