server.go 808 B

12345678910111213141516171819202122232425
  1. package grpc
  2. import (
  3. "time"
  4. v0pb "go-common/app/service/live/dao-anchor/api/grpc/v0"
  5. v1pb "go-common/app/service/live/dao-anchor/api/grpc/v1"
  6. "go-common/app/service/live/dao-anchor/service"
  7. "go-common/library/net/rpc/warden"
  8. xtime "go-common/library/time"
  9. "google.golang.org/grpc"
  10. )
  11. // New new grpc server
  12. func New(svc *service.Service) (wsvr *warden.Server, err error) {
  13. wsvr = warden.NewServer(&warden.ServerConfig{Timeout: xtime.Duration(time.Second * 10)}, grpc.MaxRecvMsgSize(1024*1024*1024), grpc.MaxSendMsgSize(1024*1024*1024))
  14. v0pb.RegisterCreateDataServer(wsvr.Server(), svc.CreateDataSvc())
  15. // v0pb.RegisterPopularityServer(wsvr.Server(), svc.PopularitySvc())
  16. v1pb.RegisterDaoAnchorServer(wsvr.Server(), svc.V1Svc())
  17. if wsvr, err = wsvr.Start(); err != nil {
  18. return
  19. }
  20. return
  21. }